1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

[flori/json] Only attempt to resize strings not other objects

https://github.com/flori/json/commit/167ada8da7
This commit is contained in:
Florian Frank 2019-04-29 15:56:14 +02:00 committed by Nobuyoshi Nakada
parent ede1a3dc11
commit 7376d70cb0
No known key found for this signature in database
GPG key ID: 4BC7D6DF58D8DF60
2 changed files with 12 additions and 16 deletions

View file

@ -1676,11 +1676,9 @@ case 7:
if (json->symbolize_names && json->parsing_name) {
*result = rb_str_intern(*result);
} else {
if (RB_TYPE_P(*result, T_STRING)) {
} else if (RB_TYPE_P(*result, T_STRING)) {
rb_str_resize(*result, RSTRING_LEN(*result));
}
}
if (cs >= JSON_string_first_final) {
return p + 1;
} else {
@ -1850,7 +1848,7 @@ static VALUE cParser_initialize(int argc, VALUE *argv, VALUE self)
}
#line 1854 "parser.c"
#line 1852 "parser.c"
enum {JSON_start = 1};
enum {JSON_first_final = 10};
enum {JSON_error = 0};
@ -1858,7 +1856,7 @@ enum {JSON_error = 0};
enum {JSON_en_main = 1};
#line 762 "parser.rl"
#line 760 "parser.rl"
/*
@ -1875,16 +1873,16 @@ static VALUE cParser_parse(VALUE self)
GET_PARSER;
#line 1879 "parser.c"
#line 1877 "parser.c"
{
cs = JSON_start;
}
#line 778 "parser.rl"
#line 776 "parser.rl"
p = json->source;
pe = p + json->len;
#line 1888 "parser.c"
#line 1886 "parser.c"
{
if ( p == pe )
goto _test_eof;
@ -1918,7 +1916,7 @@ st0:
cs = 0;
goto _out;
tr2:
#line 754 "parser.rl"
#line 752 "parser.rl"
{
char *np = JSON_parse_value(json, p, pe, &result, 0);
if (np == NULL) { p--; {p++; cs = 10; goto _out;} } else {p = (( np))-1;}
@ -1928,7 +1926,7 @@ st10:
if ( ++p == pe )
goto _test_eof10;
case 10:
#line 1932 "parser.c"
#line 1930 "parser.c"
switch( (*p) ) {
case 13: goto st10;
case 32: goto st10;
@ -2017,7 +2015,7 @@ case 9:
_out: {}
}
#line 781 "parser.rl"
#line 779 "parser.rl"
if (cs >= JSON_first_final && p == pe) {
return result;

View file

@ -571,11 +571,9 @@ static char *JSON_parse_string(JSON_Parser *json, char *p, char *pe, VALUE *resu
if (json->symbolize_names && json->parsing_name) {
*result = rb_str_intern(*result);
} else {
if (RB_TYPE_P(*result, T_STRING)) {
} else if (RB_TYPE_P(*result, T_STRING)) {
rb_str_resize(*result, RSTRING_LEN(*result));
}
}
if (cs >= JSON_string_first_final) {
return p + 1;
} else {