diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-01-19 06:09:39 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-01-19 06:09:39 (GMT) |
commit | 1ac754fa10f5d199d19911e21185d0970cb3073f (patch) | |
tree | 97fa7149ad3a324e2dad5348f23f1294d0a36384 /Python | |
parent | 8207cc7fd69b2a74bab60d7a3735cd83394f3dbb (diff) | |
download | cpython-1ac754fa10f5d199d19911e21185d0970cb3073f.zip cpython-1ac754fa10f5d199d19911e21185d0970cb3073f.tar.gz cpython-1ac754fa10f5d199d19911e21185d0970cb3073f.tar.bz2 |
Check return result from Py_InitModule*(). This API can fail.
Probably should be backported.
Diffstat (limited to 'Python')
-rw-r--r-- | Python/import.c | 2 | ||||
-rw-r--r-- | Python/marshal.c | 2 | ||||
-rw-r--r-- | Python/sysmodule.c | 2 |
3 files changed, 6 insertions, 0 deletions
diff --git a/Python/import.c b/Python/import.c index f284ff4..8bd25f7 100644 --- a/Python/import.c +++ b/Python/import.c @@ -2817,6 +2817,8 @@ initimp(void) m = Py_InitModule4("imp", imp_methods, doc_imp, NULL, PYTHON_API_VERSION); + if (m == NULL) + goto failure; d = PyModule_GetDict(m); if (setint(d, "SEARCH_ERROR", SEARCH_ERROR) < 0) goto failure; diff --git a/Python/marshal.c b/Python/marshal.c index ff8247c..5617226 100644 --- a/Python/marshal.c +++ b/Python/marshal.c @@ -1107,5 +1107,7 @@ PyMODINIT_FUNC PyMarshal_Init(void) { PyObject *mod = Py_InitModule("marshal", marshal_methods); + if (mod == NULL) + return; PyModule_AddIntConstant(mod, "version", Py_MARSHAL_VERSION); } diff --git a/Python/sysmodule.c b/Python/sysmodule.c index 5bbe950..f793b99 100644 --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -1027,6 +1027,8 @@ _PySys_Init(void) #endif m = Py_InitModule3("sys", sys_methods, sys_doc); + if (m == NULL) + return NULL; sysdict = PyModule_GetDict(m); { |