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:
parent
ede1a3dc11
commit
7376d70cb0
2 changed files with 12 additions and 16 deletions
|
@ -1676,10 +1676,8 @@ case 7:
|
||||||
|
|
||||||
if (json->symbolize_names && json->parsing_name) {
|
if (json->symbolize_names && json->parsing_name) {
|
||||||
*result = rb_str_intern(*result);
|
*result = rb_str_intern(*result);
|
||||||
} else {
|
} else if (RB_TYPE_P(*result, T_STRING)) {
|
||||||
if (RB_TYPE_P(*result, T_STRING)) {
|
rb_str_resize(*result, RSTRING_LEN(*result));
|
||||||
rb_str_resize(*result, RSTRING_LEN(*result));
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
if (cs >= JSON_string_first_final) {
|
if (cs >= JSON_string_first_final) {
|
||||||
return p + 1;
|
return p + 1;
|
||||||
|
@ -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_start = 1};
|
||||||
enum {JSON_first_final = 10};
|
enum {JSON_first_final = 10};
|
||||||
enum {JSON_error = 0};
|
enum {JSON_error = 0};
|
||||||
|
@ -1858,7 +1856,7 @@ enum {JSON_error = 0};
|
||||||
enum {JSON_en_main = 1};
|
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;
|
GET_PARSER;
|
||||||
|
|
||||||
|
|
||||||
#line 1879 "parser.c"
|
#line 1877 "parser.c"
|
||||||
{
|
{
|
||||||
cs = JSON_start;
|
cs = JSON_start;
|
||||||
}
|
}
|
||||||
|
|
||||||
#line 778 "parser.rl"
|
#line 776 "parser.rl"
|
||||||
p = json->source;
|
p = json->source;
|
||||||
pe = p + json->len;
|
pe = p + json->len;
|
||||||
|
|
||||||
#line 1888 "parser.c"
|
#line 1886 "parser.c"
|
||||||
{
|
{
|
||||||
if ( p == pe )
|
if ( p == pe )
|
||||||
goto _test_eof;
|
goto _test_eof;
|
||||||
|
@ -1918,7 +1916,7 @@ st0:
|
||||||
cs = 0;
|
cs = 0;
|
||||||
goto _out;
|
goto _out;
|
||||||
tr2:
|
tr2:
|
||||||
#line 754 "parser.rl"
|
#line 752 "parser.rl"
|
||||||
{
|
{
|
||||||
char *np = JSON_parse_value(json, p, pe, &result, 0);
|
char *np = JSON_parse_value(json, p, pe, &result, 0);
|
||||||
if (np == NULL) { p--; {p++; cs = 10; goto _out;} } else {p = (( np))-1;}
|
if (np == NULL) { p--; {p++; cs = 10; goto _out;} } else {p = (( np))-1;}
|
||||||
|
@ -1928,7 +1926,7 @@ st10:
|
||||||
if ( ++p == pe )
|
if ( ++p == pe )
|
||||||
goto _test_eof10;
|
goto _test_eof10;
|
||||||
case 10:
|
case 10:
|
||||||
#line 1932 "parser.c"
|
#line 1930 "parser.c"
|
||||||
switch( (*p) ) {
|
switch( (*p) ) {
|
||||||
case 13: goto st10;
|
case 13: goto st10;
|
||||||
case 32: goto st10;
|
case 32: goto st10;
|
||||||
|
@ -2017,7 +2015,7 @@ case 9:
|
||||||
_out: {}
|
_out: {}
|
||||||
}
|
}
|
||||||
|
|
||||||
#line 781 "parser.rl"
|
#line 779 "parser.rl"
|
||||||
|
|
||||||
if (cs >= JSON_first_final && p == pe) {
|
if (cs >= JSON_first_final && p == pe) {
|
||||||
return result;
|
return result;
|
||||||
|
|
|
@ -571,10 +571,8 @@ static char *JSON_parse_string(JSON_Parser *json, char *p, char *pe, VALUE *resu
|
||||||
|
|
||||||
if (json->symbolize_names && json->parsing_name) {
|
if (json->symbolize_names && json->parsing_name) {
|
||||||
*result = rb_str_intern(*result);
|
*result = rb_str_intern(*result);
|
||||||
} else {
|
} else if (RB_TYPE_P(*result, T_STRING)) {
|
||||||
if (RB_TYPE_P(*result, T_STRING)) {
|
rb_str_resize(*result, RSTRING_LEN(*result));
|
||||||
rb_str_resize(*result, RSTRING_LEN(*result));
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
if (cs >= JSON_string_first_final) {
|
if (cs >= JSON_string_first_final) {
|
||||||
return p + 1;
|
return p + 1;
|
||||||
|
|
Loading…
Reference in a new issue