Merge pull request #6339
77aeb7c
UniValue: don't escape solidus, keep espacing of reverse solidus (Jonas Schnelli)
This commit is contained in:
commit
c3f0490a06
3 changed files with 2 additions and 3 deletions
|
@ -286,7 +286,7 @@ BOOST_AUTO_TEST_CASE(univalue_object)
|
|||
}
|
||||
|
||||
static const char *json1 =
|
||||
"[1.10000000,{\"key1\":\"str\\u0000\",\"key2\":800,\"key3\":{\"name\":\"martian\"}}]";
|
||||
"[1.10000000,{\"key1\":\"str\\u0000\",\"key2\":800,\"key3\":{\"name\":\"martian http://test.com\"}}]";
|
||||
|
||||
BOOST_AUTO_TEST_CASE(univalue_readwrite)
|
||||
{
|
||||
|
|
|
@ -22,7 +22,6 @@ static void initJsonEscape()
|
|||
{
|
||||
escapes[(int)'"'] = "\\\"";
|
||||
escapes[(int)'\\'] = "\\\\";
|
||||
escapes[(int)'/'] = "\\/";
|
||||
escapes[(int)'\b'] = "\\b";
|
||||
escapes[(int)'\f'] = "\\f";
|
||||
escapes[(int)'\n'] = "\\n";
|
||||
|
|
|
@ -49,7 +49,7 @@ static const char *escapes[256] = {
|
|||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
"\\/",
|
||||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
|
|
Loading…
Reference in a new issue