mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
gh-126171: fix possible null dereference in _imp_find_frozen_impl (#126566)
This commit is contained in:
parent
06a8b0bb5e
commit
9ecd8f7f40
1 changed files with 1 additions and 1 deletions
|
@ -4424,7 +4424,7 @@ _imp_find_frozen_impl(PyObject *module, PyObject *name, int withdata)
|
|||
if (info.origname != NULL && info.origname[0] != '\0') {
|
||||
origname = PyUnicode_FromString(info.origname);
|
||||
if (origname == NULL) {
|
||||
Py_DECREF(data);
|
||||
Py_XDECREF(data);
|
||||
return NULL;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue