Sun, 26 Jan 2025 14:23:13 +0100
simplify array access
src/json.c | file | annotate | diff | comparison | revisions |
--- a/src/json.c Sun Jan 26 14:15:21 2025 +0100 +++ b/src/json.c Sun Jan 26 14:23:13 2025 +0100 @@ -405,7 +405,7 @@ // character is encoded as a surrogate pair // get next 6 bytes if (str.length >= 12) { - if (*(str.ptr+6) == '\\' && *(str.ptr+7) == 'u') { + if (str.ptr[6] == '\\' && str.ptr[7] == 'u') { cxstring ustr2 = { str.ptr+8, 4 }; if (!cx_strtou16_lc(ustr2, &utf16b, 16, "") && utf16b >= 0xDC00 && utf16b <= 0xDFFF) {