Searched refs:wnamebuf (Results 1 – 1 of 1) sorted by relevance
2299 Py_UNICODE *wnamebuf; in posix_listdir() local2302 wnamebuf = malloc((len + 5) * sizeof(wchar_t)); in posix_listdir()2303 if (!wnamebuf) { in posix_listdir()2307 wcscpy(wnamebuf, wpath); in posix_listdir()2309 Py_UNICODE wch = wnamebuf[len-1]; in posix_listdir()2311 wnamebuf[len++] = L'\\'; in posix_listdir()2312 wcscpy(wnamebuf + len, L"*.*"); in posix_listdir()2315 free(wnamebuf); in posix_listdir()2319 hFindFile = FindFirstFileW(wnamebuf, &wFileData); in posix_listdir()2324 free(wnamebuf); in posix_listdir()[all …]