summaryrefslogtreecommitdiff
path: root/ruby.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-11-06 01:17:59 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-11-06 01:17:59 +0000
commit4646ba6b2a8ff08a989a4c761a9b621343da9671 (patch)
tree3443b14bfcebcb8f06ab4cacf61ce04ce75a3852 /ruby.c
parentcc2343e7b7b8bb54e0d2fb5ed45abb6141230624 (diff)
* ext/stringio/stringio.c (strio_set_string, strio_reopen): check
tainted. * ext/stringio/stringio.c (strio_copy, strio_ungetc, strio_write, strio_putc): add infection. * ext/stringio/stringio.c (strio_path): just nil. [ruby-dev:21846] * ruby.c (proc_options): reserve searched script path in the source file name table. [ruby-list:38765] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4906 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ruby.c')
-rw-r--r--ruby.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/ruby.c b/ruby.c
index 344007b5a0..2f0dceb697 100644
--- a/ruby.c
+++ b/ruby.c
@@ -429,6 +429,7 @@ proc_options(argc, argv)
char *argv0 = argv[0];
int do_search;
char *s;
+ NODE *volatile script_node = 0;
int version = 0;
int copyright = 0;
@@ -751,6 +752,8 @@ proc_options(argc, argv)
script = dln_find_file(argv[0], getenv(PATH_ENV));
}
if (!script) script = argv[0];
+ script = ruby_sourcefile = rb_source_filename(script);
+ script_node = NEW_NEWLINE(0);
}
#ifdef DOSISH
translate_char(script, '\\', '/');