gh-102281: Fix potential nullptr dereference + use of uninitialized memory (gh-102282)

This commit is contained in:
Max Bachmann 2023-03-15 13:58:43 +01:00 committed by GitHub
parent 2b5781d659
commit afa6092ee4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 2 deletions

View file

@ -446,7 +446,10 @@ getpath_realpath(PyObject *Py_UNUSED(self) , PyObject *args)
if (s) {
*s = L'\0';
}
path2 = _Py_normpath(_Py_join_relfile(path, resolved), -1);
path2 = _Py_join_relfile(path, resolved);
if (path2) {
path2 = _Py_normpath(path2, -1);
}
PyMem_RawFree((void *)path);
path = path2;
}