Kaydet (Commit) 9f485bcd authored tarafından Martin v. Löwis's avatar Martin v. Löwis

Add missing PyMem_Free.

üst e58334ae
...@@ -1553,6 +1553,7 @@ posix_chmod(PyObject *self, PyObject *args) ...@@ -1553,6 +1553,7 @@ posix_chmod(PyObject *self, PyObject *args)
PyMem_Free(path); PyMem_Free(path);
return NULL; return NULL;
} }
PyMem_Free(path);
Py_INCREF(Py_None); Py_INCREF(Py_None);
return Py_None; return Py_None;
#else /* Py_WIN_WIDE_FILENAMES */ #else /* Py_WIN_WIDE_FILENAMES */
......
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