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:
committed by
Evgeny Gavrin
parent
8aeb2a055e
commit
dcc704d1e8
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user