diff options
author | Florian Frank <flori@ping.de> | 2012-10-07 07:52:59 +0200 |
---|---|---|
committer | Florian Frank <flori@ping.de> | 2012-10-07 07:52:59 +0200 |
commit | 86128f517d01a3ececd640634e8f6acbda88dbc1 (patch) | |
tree | 84e7444f1ec08fe164c67f587b41bd59d5146082 /ext/json | |
parent | 9f43acbaff619d813b5a96b7e303b4876dbdf9b9 (diff) | |
download | json-86128f517d01a3ececd640634e8f6acbda88dbc1.tar.gz |
Change actual rl filessferik-max_nesting
Diffstat (limited to 'ext/json')
-rw-r--r-- | ext/json/ext/parser/parser.rl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/json/ext/parser/parser.rl b/ext/json/ext/parser/parser.rl index 20ecc48..6138a6f 100644 --- a/ext/json/ext/parser/parser.rl +++ b/ext/json/ext/parser/parser.rl @@ -602,7 +602,7 @@ static VALUE convert_encoding(VALUE source) * _opts_ can have the following keys: * * *max_nesting*: The maximum depth of nesting allowed in the parsed data * structures. Disable depth checking with :max_nesting => false|nil|0, it - * defaults to 19. + * defaults to 100. * * *allow_nan*: If set to true, allow NaN, Infinity and -Infinity in * defiance of RFC 4627 to be parsed by the Parser. This option defaults to * false. @@ -639,7 +639,7 @@ static VALUE cParser_initialize(int argc, VALUE *argv, VALUE self) json->max_nesting = 0; } } else { - json->max_nesting = 19; + json->max_nesting = 100; } tmp = ID2SYM(i_allow_nan); if (option_given_p(opts, tmp)) { @@ -693,7 +693,7 @@ static VALUE cParser_initialize(int argc, VALUE *argv, VALUE self) } } } else { - json->max_nesting = 19; + json->max_nesting = 100; json->allow_nan = 0; json->create_additions = 1; json->create_id = rb_funcall(mJSON, i_create_id, 0); |