Commit 5b0e9e84 authored by Antoine Pitrou's avatar Antoine Pitrou

Issue #10055: Make json C89-compliant in UCS4 mode.

parent 8382d0fe
......@@ -346,6 +346,8 @@ Tests
Build
-----
- Issue #10055: Make json C89-compliant in UCS4 mode.
- Issue #9552: Avoid unnecessary rebuild of OpenSSL. (Windows)
- Issue #1633863: Don't ignore $CC under AIX.
......
......@@ -440,8 +440,8 @@ scanstring_unicode(PyObject *pystr, Py_ssize_t end, int strict, Py_ssize_t *next
end += 6;
/* Decode 4 hex digits */
for (; next < end; next++) {
c2 <<= 4;
Py_UNICODE digit = buf[next];
c2 <<= 4;
switch (digit) {
case '0': case '1': case '2': case '3': case '4':
case '5': case '6': case '7': case '8': case '9':
......
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