mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Fix a refleak
This commit is contained in:
parent
de3c73b57c
commit
538ba2afb5
1 changed files with 3 additions and 2 deletions
|
@ -2782,10 +2782,11 @@ PyImport_ImportModuleLevelObject(PyObject *name, PyObject *given_globals,
|
|||
}
|
||||
base = PyUnicode_Substring(package, 0, last_dot);
|
||||
if (PyUnicode_GET_LENGTH(name) > 0) {
|
||||
PyObject *borrowed_dot = NULL;
|
||||
PyObject *seq = PyTuple_Pack(2, base, name);
|
||||
PyObject *borrowed_dot, *seq = NULL;
|
||||
|
||||
borrowed_dot = _PyUnicode_FromId(&single_dot);
|
||||
seq = PyTuple_Pack(2, base, name);
|
||||
Py_DECREF(base);
|
||||
if (borrowed_dot == NULL || seq == NULL) {
|
||||
goto error;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue