diff options
Diffstat (limited to 'json.c')
| -rw-r--r-- | json.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -824,7 +824,7 @@ json_decode_string(const char **sp, size_t *length, bool strict) s += 6; - uc = 0x10000 | ((uc & 0x3FF) << 10) | (lc & 0x3FF); + uc = 0x10000 + (((uc & 0x3FF) << 10) | (lc & 0x3FF)); } unicode_to_utf8(uc, (unsigned char *) buf); |
