Commit 26532f75 authored by Christian Heimes's avatar Christian Heimes

Check return value of PyType_Ready(&EncodingMapType)

CID 486654
parent 09ca794a
......@@ -14164,7 +14164,8 @@ int _PyUnicode_Init(void)
PyUnicode_2BYTE_KIND, linebreak,
Py_ARRAY_LENGTH(linebreak));
PyType_Ready(&EncodingMapType);
if (PyType_Ready(&EncodingMapType) < 0)
Py_FatalError("Can't initialize encoding map type");
if (PyType_Ready(&PyFieldNameIter_Type) < 0)
Py_FatalError("Can't initialize field name iterator type");
......
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