From c8911896936224415bc120b2996a347d5f7f6ba5 Mon Sep 17 00:00:00 2001 From: nobu Date: Mon, 31 Dec 2001 05:26:24 +0000 Subject: [PATCH] * parse.y (yycompile): always store copy of filename. * parse.y (rb_compile_file): no longer need to strdup() here. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1952 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 6 ++++++ parse.y | 4 +++- version.h | 4 ++-- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 28a34d57a0..a2fc36721b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Mon Dec 31 14:20:46 2001 Nobuyoshi Nakada + + * parse.y (yycompile): always store copy of filename. + + * parse.y (rb_compile_file): no longer need to strdup() here. + Mon Dec 31 04:27:28 2001 Minero Aoki * lib/net/protocol.rb: Protocol#start returns the return value of diff --git a/parse.y b/parse.y index 4428386e52..d79dc67445 100644 --- a/parse.y +++ b/parse.y @@ -2118,6 +2118,8 @@ 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; @@ -2228,7 +2230,7 @@ rb_compile_file(f, file, start) lex_pbeg = lex_p = lex_pend = 0; ruby_sourceline = start - 1; - return yycompile(strdup(f), start); + return yycompile(f, start); } static inline int diff --git a/version.h b/version.h index 3ec89a4a1a..5af333e8f0 100644 --- a/version.h +++ b/version.h @@ -1,4 +1,4 @@ #define RUBY_VERSION "1.7.2" -#define RUBY_RELEASE_DATE "2001-12-28" +#define RUBY_RELEASE_DATE "2001-12-31" #define RUBY_VERSION_CODE 172 -#define RUBY_RELEASE_CODE 20011228 +#define RUBY_RELEASE_CODE 20011231