Details
-
Bug
-
Resolution: Duplicate
-
Major - P3
-
None
-
3.0.1
-
None
Description
json.cpp should change to replace all occurance of " (the double-quote character) !!
void visit_value(const types::b_utf8& value) {
|
std::string str = value.value.to_string().data();
|
out << "\"" << replace_all(str, "\"", "\\\"") << "\"";
|
}
|