Commit f4f24248 authored by Victor Stinner's avatar Victor Stinner

Fix uninitialized value in charmap_decode_mapping()

parent 37c74650
......@@ -7459,7 +7459,7 @@ charmap_decode_mapping(const char *s,
Py_ssize_t startinpos, endinpos;
PyObject *errorHandler = NULL, *exc = NULL;
unsigned char ch;
PyObject *key, *item;
PyObject *key, *item = NULL;
e = s + size;
......
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