Append terminator in saveStringFromFreeZone()

This commit is contained in:
Benoit Blanchon
2021-11-20 20:29:09 +01:00
parent 62f9b94ab1
commit 43b2e2e774
10 changed files with 58 additions and 25 deletions

View File

@ -18,7 +18,6 @@ static void testCodepoint(uint32_t codepoint, std::string expected) {
CAPTURE(codepoint);
Utf8::encodeCodepoint(codepoint, str);
str.append('\0');
REQUIRE(str.str().c_str() == expected);
}