diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2010-10-13 22:36:16 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2010-10-13 22:36:16 (GMT) |
commit | a21350976e5436f49074141794fe8614931c268c (patch) | |
tree | cd8bae276e9bf4057e2e79ddf8c8cfd928f36cb2 /Modules/python.c | |
parent | ee85a1d3bb8ac76c9bbb756d30b9e2110c5137d3 (diff) | |
download | cpython-a21350976e5436f49074141794fe8614931c268c.zip cpython-a21350976e5436f49074141794fe8614931c268c.tar.gz cpython-a21350976e5436f49074141794fe8614931c268c.tar.bz2 |
main(): catch PyUnicode_FromString() failure (exit)
Diffstat (limited to 'Modules/python.c')
-rw-r--r-- | Modules/python.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Modules/python.c b/Modules/python.c index 540bcfe..488aa79 100644 --- a/Modules/python.c +++ b/Modules/python.c @@ -44,6 +44,8 @@ main(int argc, char **argv) #ifdef __APPLE__ /* Use utf-8 on Mac OS X */ PyObject *unicode = PyUnicode_FromString(argv[i]); + if (!unicode) + return 1; argv_copy[i] = PyUnicode_AsWideCharString(unicode, NULL); Py_DECREF(unicode); #else |