1
0
mirror of https://github.com/nlohmann/json.git synced 2025-07-13 20:21:48 +03:00

Fix character skipping after a surrogate pair

In a string the first character following a surrogate pair is skipped by the
lexer, but the rest of the string is parsed as usual.
This commit is contained in:
Robert Marki
2015-11-13 12:49:26 +01:00
parent 3948630374
commit ec7a1d8347
3 changed files with 9 additions and 4 deletions

View File

@ -6162,8 +6162,8 @@ class basic_json
auto codepoint2 = std::strtoul(std::string(reinterpret_cast<typename string_t::const_pointer>
(i + 7), 4).c_str(), nullptr, 16);
result += to_unicode(codepoint, codepoint2);
// skip the next 11 characters (xxxx\uyyyy)
i += 11;
// skip the next 10 characters (xxxx\uyyyy)
i += 10;
}
else
{