diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-11-21 13:52:49 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-11-21 13:52:49 +0000 |
| commit | 51e0cceb41b1371a7beef6c407d40e3d54a5f0fa (patch) | |
| tree | 352d9e94f3903f55ca9506ca43df942c584ee8de /parse.y | |
| parent | 862215aa023c090d9999dd4ea55792246e92b924 (diff) | |
| download | ruby-51e0cceb41b1371a7beef6c407d40e3d54a5f0fa.tar.gz ruby-51e0cceb41b1371a7beef6c407d40e3d54a5f0fa.tar.xz ruby-51e0cceb41b1371a7beef6c407d40e3d54a5f0fa.zip | |
* parse.y (dsym): prohibit empty symbol literal by interpolation.
fixed: [ruby-talk:166529]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@9579 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'parse.y')
| -rw-r--r-- | parse.y | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -3864,12 +3864,19 @@ dsym : tSYMBEG xstring_contents tSTRING_END yyerror("empty symbol literal"); } else { + VALUE lit; + switch (nd_type($$)) { case NODE_DSTR: nd_set_type($$, NODE_DSYM); break; case NODE_STR: - if (strlen(RSTRING($$->nd_lit)->ptr) == RSTRING($$->nd_lit)->len) { + lit = $$->nd_lit; + if (RSTRING(lit)->len == 0) { + yyerror("empty symbol literal"); + break; + } + if (strlen(RSTRING(lit)->ptr) == RSTRING(lit)->len) { $$->nd_lit = ID2SYM(rb_intern(RSTRING($$->nd_lit)->ptr)); nd_set_type($$, NODE_LIT); break; |
