[3.13] gh-126171: fix possible null dereference in _imp_find_frozen_impl (GH-126566) (#126567)

gh-126171: fix possible null dereference in _imp_find_frozen_impl (GH-126566)
(cherry picked from commit 9ecd8f7f40)

Co-authored-by: Valery Fedorenko <federicovalenso@gmail.com>
This commit is contained in:
Miss Islington (bot) 2024-11-08 11:55:38 +01:00 committed by GitHub
parent 9ecaee6a55
commit 23468acac4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -4436,7 +4436,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;
}
}