We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bde69c1 commit f17a6a9Copy full SHA for f17a6a9
src/Store/Json.cpp
@@ -7,6 +7,7 @@ bool json_encode(std::ostream& output, const char* datum) {
7
while (*datum) {
8
if (*datum == '"' || *datum == '\\') output << '\\';
9
output << *datum;
10
+ ++datum;
11
};
12
output << '"';
13
return true;
0 commit comments