From: Andrew M. Kuchling Date: Tue, 3 Oct 2006 19:11:32 +0000 (+0000) Subject: [Backport r51443 | neal.norwitz] X-Git-Tag: v2.4.4c1~64 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=58e5c1149a94bed13a0b7a1b5b2b817f0f365f81;p=thirdparty%2FPython%2Fcpython.git [Backport r51443 | neal.norwitz] Handle a few more error conditions. Klocwork 301 and 302. Will backport. --- diff --git a/Python/pythonrun.c b/Python/pythonrun.c index 9ef1fea41f69..6d6d1d5de3af 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -497,11 +497,15 @@ Py_NewInterpreter(void) bimod = _PyImport_FindExtension("__builtin__", "__builtin__"); if (bimod != NULL) { interp->builtins = PyModule_GetDict(bimod); + if (interp->builtins == NULL) + goto handle_error; Py_INCREF(interp->builtins); } sysmod = _PyImport_FindExtension("sys", "sys"); if (bimod != NULL && sysmod != NULL) { interp->sysdict = PyModule_GetDict(sysmod); + if (interp->sysdict == NULL) + goto handle_error; Py_INCREF(interp->sysdict); PySys_SetPath(Py_GetPath()); PyDict_SetItemString(interp->sysdict, "modules", @@ -515,6 +519,7 @@ Py_NewInterpreter(void) if (!PyErr_Occurred()) return tstate; +handle_error: /* Oops, it didn't work. Undo it all. */ PyErr_Print();