10000 Use `PyMem_RawFree` · python/cpython@21cd24a · GitHub
[go: up one dir, main page]

Skip to content

Commit 21cd24a

Browse files
committed
Use PyMem_RawFree
1 parent 34858a8 commit 21cd24a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/posixmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5573,7 +5573,7 @@ os__path_abspath_impl(PyObject *module, PyObject *path)
55735573
if (path_buf)
55745574
PyMem_Free(path_buf);
55755575
if (path_buf2)
5576-
PyMem_Free(path_buf2);
5576+
PyMem_RawFree(path_buf2);
55775577
return result;
55785578
}
55795579

0 commit comments

Comments
 (0)
0