Issue #25698: Prevent possible replacing imported module with the empty one

if the stack is too deep.
This commit is contained in:
Serhiy Storchaka 2016-02-10 10:31:43 +02:00
commit 5b613dd810
1 changed files with 6 additions and 2 deletions

View File

@ -671,9 +671,13 @@ PyImport_AddModuleObject(PyObject *name)
PyObject *modules = PyImport_GetModuleDict();
PyObject *m;
if ((m = PyDict_GetItem(modules, name)) != NULL &&
PyModule_Check(m))
if ((m = PyDict_GetItemWithError(modules, name)) != NULL &&
PyModule_Check(m)) {
return m;
}
if (PyErr_Occurred()) {
return NULL;
}
m = PyModule_NewObject(name);
if (m == NULL)
return NULL;