Commit b87d9421 authored by Stefan Behnel's avatar Stefan Behnel

handle malloc() failure in encoding setup code

parent ae2776ad
......@@ -134,6 +134,7 @@ static int __Pyx_init_sys_getdefaultencoding_params(void) {
if (default_encoding == NULL) goto bad;
default_encoding_c = PyBytes_AS_STRING(default_encoding);
__PYX_DEFAULT_STRING_ENCODING = (char*) malloc(strlen(default_encoding_c));
if (__PYX_DEFAULT_STRING_ENCODING == NULL) goto bad;
strcpy(__PYX_DEFAULT_STRING_ENCODING, default_encoding_c);
Py_DECREF(sys);
Py_DECREF(default_encoding);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment