* parse.y (parser_tokspace): increment tokidx

fixes test failure at [test/ruby/test_stringchar.rb:72]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13773 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
davidflanagan 2007-10-25 05:08:08 +00:00
parent 1c662c2b63
commit 966e15e655
2 changed files with 8 additions and 4 deletions

View File

@ -1,3 +1,7 @@
Thu Oct 25 13:59:53 2007 David Flanagan <davidflanagan@ruby-lang.org>
* parse.y (parser_tokspace): increment tokidx
fixes test failure at [test/ruby/test_stringchar.rb:72]
Thu Oct 25 09:49:49 2007 akira yamada <akira@ruby-lang.org> Thu Oct 25 09:49:49 2007 akira yamada <akira@ruby-lang.org>
* lib/uri.rb, lib/uri/ldaps.rb: added LDAPS * lib/uri.rb, lib/uri/ldaps.rb: added LDAPS

View File

@ -4917,13 +4917,13 @@ parser_newtok(struct parser_params *parser)
static char * static char *
parser_tokspace(struct parser_params *parser, int n) parser_tokspace(struct parser_params *parser, int n)
{ {
int idx = tokidx + n; tokidx += n;
if (idx >= toksiz) { if (tokidx >= toksiz) {
do {toksiz *= 2;} while (toksiz < idx); do {toksiz *= 2;} while (toksiz < tokidx);
REALLOC_N(tokenbuf, char, toksiz); REALLOC_N(tokenbuf, char, toksiz);
} }
return &tokenbuf[tokidx]; return &tokenbuf[tokidx-n];
} }
static void static void