mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
Issue #18180: Fix ref leak in _PyImport_GetDynLoadWindows().
This commit is contained in:
parent
a822d36675
commit
409f90237c
2 changed files with 5 additions and 2 deletions
|
@ -262,8 +262,9 @@ dl_funcptr _PyImport_GetDynLoadWindows(const char *shortname,
|
|||
theLength));
|
||||
}
|
||||
if (message != NULL) {
|
||||
PyErr_SetImportError(message, PyUnicode_FromString(shortname),
|
||||
pathname);
|
||||
PyObject *shortname_obj = PyUnicode_FromString(shortname);
|
||||
PyErr_SetImportError(message, shortname_obj, pathname);
|
||||
Py_XDECREF(shortname_obj);
|
||||
Py_DECREF(message);
|
||||
}
|
||||
return NULL;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue