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 662588b commit 19c739fCopy full SHA for 19c739f
json-builder.c
@@ -469,7 +469,6 @@ static size_t measure_string (unsigned int length,
469
{
470
case '"':
471
case '\\':
472
- case '/':
473
case '\b':
474
case '\f':
475
case '\n':
@@ -509,7 +508,6 @@ static size_t serialize_string (json_char * buf,
509
508
510
case '"': PRINT_ESCAPED ('\"'); continue;
511
case '\\': PRINT_ESCAPED ('\\'); continue;
512
- case '/': PRINT_ESCAPED ('/'); continue;
513
case '\b': PRINT_ESCAPED ('b'); continue;
514
case '\f': PRINT_ESCAPED ('f'); continue;
515
case '\n': PRINT_ESCAPED ('n'); continue;
0 commit comments