Commit b96145a6 authored by Victor Stinner's avatar Victor Stinner Committed by GitHub

bpo-38353: Simplify calculate_pybuilddir() (GH-16614)

Calling _Py_wfopen() is enough to check if filename is an existing
file or not. There is no need to check first isfile().
parent d97f1ce6
......@@ -657,11 +657,6 @@ calculate_pybuilddir(const wchar_t *argv0_path,
return _PyStatus_NO_MEMORY();
}
if (!isfile(filename)) {
PyMem_RawFree(filename);
return _PyStatus_OK();
}
FILE *fp = _Py_wfopen(filename, L"rb");
PyMem_RawFree(filename);
if (fp == NULL) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment