Skip to content

Commit

Permalink
* parse.y (yycompile): always store copy of filename.
Browse files Browse the repository at this point in the history
* parse.y (rb_compile_file): no longer need to strdup() here.


git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1952 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
nobu committed Dec 31, 2001
1 parent b37fb58 commit 4f459fd
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
6 changes: 6 additions & 0 deletions ChangeLog
@@ -1,3 +1,9 @@
Mon Dec 31 14:20:46 2001 Nobuyoshi Nakada <nobu.nakada@nifty.ne.jp>

* 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 <aamine@mx.edit.ne.jp>

* lib/net/protocol.rb: Protocol#start returns the return value of
Expand Down
4 changes: 3 additions & 1 deletion parse.y
Expand Up @@ -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;
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions 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

0 comments on commit 4f459fd

Please sign in to comment.