Add missing PyMem_Free.

This commit is contained in:
Martin v. Löwis 2006-05-08 05:25:56 +00:00
parent e58334ae9e
commit 9f485bcd68
1 changed files with 1 additions and 0 deletions

View File

@ -1553,6 +1553,7 @@ posix_chmod(PyObject *self, PyObject *args)
PyMem_Free(path);
return NULL;
}
PyMem_Free(path);
Py_INCREF(Py_None);
return Py_None;
#else /* Py_WIN_WIDE_FILENAMES */