diff options
Diffstat (limited to 'Objects/unicodeobject.c')
-rw-r--r-- | Objects/unicodeobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 1068916..b961129 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -5857,7 +5857,7 @@ PyUnicode_DecodeUnicodeEscape(const char *s, message = "unknown Unicode character name"; s++; if (ucnhash_CAPI->getcode(NULL, start, (int)(s-start-1), - &chr)) + &chr, 0)) goto store; } } |