diff options
-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 |