UniValue: don't escape solidus, keep espacing of reverse solidus

This commit is contained in:
Jonas Schnelli 2015-06-24 22:31:10 +02:00
parent 91389e51c7
commit 77aeb7c964
3 changed files with 2 additions and 3 deletions

View file

@ -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)
{

View file

@ -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";

View file

@ -49,7 +49,7 @@ static const char *escapes[256] = {
NULL,
NULL,
NULL,
"\\/",
NULL,
NULL,
NULL,
NULL,