mirror of
https://github.com/python/cpython.git
synced 2025-08-25 11:15:02 +00:00
Fix a leak in _PyImport_LoadDynamicModuleWithSpec() after failing PySys_Audit() (GH-28862)
This commit is contained in:
parent
15188b115a
commit
9883ca498d
1 changed files with 1 additions and 1 deletions
|
@ -121,7 +121,7 @@ _PyImport_LoadDynamicModuleWithSpec(PyObject *spec, FILE *fp)
|
||||||
|
|
||||||
if (PySys_Audit("import", "OOOOO", name_unicode, path,
|
if (PySys_Audit("import", "OOOOO", name_unicode, path,
|
||||||
Py_None, Py_None, Py_None) < 0) {
|
Py_None, Py_None, Py_None) < 0) {
|
||||||
return NULL;
|
goto error;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef MS_WINDOWS
|
#ifdef MS_WINDOWS
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue