Skip to content

Commit afa6092

Browse files
authored
gh-102281: Fix potential nullptr dereference + use of uninitialized memory (gh-102282)
1 parent 2b5781d commit afa6092

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fix potential nullptr dereference and use of uninitialized memory in fileutils. Patch by Max Bachmann.

Modules/getpath.c

+4-1
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,10 @@ getpath_realpath(PyObject *Py_UNUSED(self) , PyObject *args)
446446
if (s) {
447447
*s = L'\0';
448448
}
449-
path2 = _Py_normpath(_Py_join_relfile(path, resolved), -1);
449+
path2 = _Py_join_relfile(path, resolved);
450+
if (path2) {
451+
path2 = _Py_normpath(path2, -1);
452+
}
450453
PyMem_RawFree((void *)path);
451454
path = path2;
452455
}

Python/fileutils.c

+5-1
Original file line numberDiff line numberDiff line change
@@ -2233,7 +2233,10 @@ _Py_join_relfile(const wchar_t *dirname, const wchar_t *relfile)
22332233
}
22342234
assert(wcslen(dirname) < MAXPATHLEN);
22352235
assert(wcslen(relfile) < MAXPATHLEN - wcslen(dirname));
2236-
join_relfile(filename, bufsize, dirname, relfile);
2236+
if (join_relfile(filename, bufsize, dirname, relfile) < 0) {
2237+
PyMem_RawFree(filename);
2238+
return NULL;
2239+
}
22372240
return filename;
22382241
}
22392242

@@ -2271,6 +2274,7 @@ _Py_find_basename(const wchar_t *filename)
22712274
wchar_t *
22722275
_Py_normpath(wchar_t *path, Py_ssize_t size)
22732276
{
2277+
assert(path != NULL);
22742278
if (!path[0] || size == 0) {
22752279
return path;
22762280
}

0 commit comments

Comments
 (0)