mirror of https://github.com/python/cpython
mwh pointed out _Filemodule.c is generated. So to fix the memory leak
this file (the source) must be fixed. Why isn't there a comment at the top saying the file is generated and why are both the source and generated file checked in? Bootstrap problem? Will backport.
This commit is contained in:
parent
62a21121b4
commit
73afe9aa32
|
@ -302,11 +302,10 @@ PyMac_GetFSRef(PyObject *v, FSRef *fsr)
|
||||||
char *path = NULL;
|
char *path = NULL;
|
||||||
if (!PyArg_Parse(v, "et", Py_FileSystemDefaultEncoding, &path))
|
if (!PyArg_Parse(v, "et", Py_FileSystemDefaultEncoding, &path))
|
||||||
return 0;
|
return 0;
|
||||||
if ( (err=FSPathMakeRef(path, fsr, NULL)) ) {
|
if ( (err=FSPathMakeRef(path, fsr, NULL)) )
|
||||||
PyMac_Error(err);
|
PyMac_Error(err);
|
||||||
return 0;
|
PyMem_Free(path);
|
||||||
}
|
return !err;
|
||||||
return 1;
|
|
||||||
}
|
}
|
||||||
/* XXXX Should try unicode here too */
|
/* XXXX Should try unicode here too */
|
||||||
/* Otherwise we try to go via an FSSpec */
|
/* Otherwise we try to go via an FSSpec */
|
||||||
|
|
Loading…
Reference in New Issue