Add missing case for backspace control character in JSON.parse()

JerryScript-DCO-1.0-Signed-off-by: Roland Takacs rtakacs.u-szeged@partner.samsung.com
This commit is contained in:
Roland Takacs
2015-07-15 11:18:37 +02:00
committed by Evgeny Gavrin
parent 8aeb2a055e
commit dcc704d1e8
2 changed files with 7 additions and 0 deletions
@@ -163,6 +163,11 @@ ecma_builtin_json_parse_string (ecma_json_token_t *token_p) /**< token argument
*current_p = '\t';
break;
}
case 'b':
{
*current_p = '\b';
break;
}
default:
{
return;