diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-01-04 15:23:26 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-01-04 15:23:26 +0000 |
| commit | 7ac17d25dd06c98f336397e807696baeea2daa99 (patch) | |
| tree | ddd501537e4d918e4444c433f2a267b7fa6a73e0 | |
| parent | a373bf8d42c482fb69acb7d81d0e021f0d7bcf3a (diff) | |
| download | ruby-7ac17d25dd06c98f336397e807696baeea2daa99.tar.gz ruby-7ac17d25dd06c98f336397e807696baeea2daa99.tar.xz ruby-7ac17d25dd06c98f336397e807696baeea2daa99.zip | |
* parse.y (yycompile): strdup()'ed twice.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1963 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | parse.y | 2 |
2 files changed, 4 insertions, 2 deletions
@@ -1,3 +1,7 @@ +Sat Jan 5 00:19:12 2002 Nobuyoshi Nakada <nobu.nakada@nifty.ne.jp> + + * parse.y (yycompile): strdup()'ed twice. + Wed Jan 2 23:34:25 2002 WATANABE Hirofumi <eban@ruby-lang.org> * lib/mkmf.rb (create_makefile): add -I. to CPPFLAGS. @@ -2118,8 +2118,6 @@ yycompile(f, line) int n; NODE *node = 0; - f = strdup(f); - if (!compile_for_eval && rb_safe_level() == 0 && rb_const_defined(rb_cObject, rb_intern("SCRIPT_LINES__"))) { VALUE hash, fname; |
