summaryrefslogtreecommitdiffstats
path: root/Python/sysmodule.c
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2006-09-27 19:17:32 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2006-09-27 19:17:32 (GMT)
commite7031223e36c43ccd47321b3ff8997c1423e2b9c (patch)
treea8822cdeb18e24a91bd5e3e129db1cfa95d05b78 /Python/sysmodule.c
parent4c16bac18c82868e3f20a2c4ca8f329605942ff8 (diff)
downloadcpython-e7031223e36c43ccd47321b3ff8997c1423e2b9c.zip
cpython-e7031223e36c43ccd47321b3ff8997c1423e2b9c.tar.gz
cpython-e7031223e36c43ccd47321b3ff8997c1423e2b9c.tar.bz2
[Backport of rev. 42093 by neal.norwitz]
Check return result from Py_InitModule*(). This API can fail. Probably should be backported.
Diffstat (limited to 'Python/sysmodule.c')
-rw-r--r--Python/sysmodule.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/Python/sysmodule.c b/Python/sysmodule.c
index b51fa86..d48194b 100644
--- a/Python/sysmodule.c
+++ b/Python/sysmodule.c
@@ -944,6 +944,8 @@ _PySys_Init(void)
#endif
m = Py_InitModule3("sys", sys_methods, sys_doc);
+ if (m == NULL)
+ return NULL;
sysdict = PyModule_GetDict(m);
{