Lines Matching refs:wbuf2
3792 wchar_t *wbuf2 = wbuf;
3802 wbuf2 = PyMem_RawMalloc(len * sizeof(wchar_t));
3805 wbuf2 = NULL;
3807 if (wbuf2) {
3808 len = GetCurrentDirectoryW(len, wbuf2);
3813 if (!wbuf2) {
3818 if (wbuf2 != wbuf)
3819 PyMem_RawFree(wbuf2);
3823 PyObject *resobj = PyUnicode_FromWideChar(wbuf2, len);
3824 if (wbuf2 != wbuf) {
3825 PyMem_RawFree(wbuf2);