summaryrefslogtreecommitdiff
path: root/ruby.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-02-10 07:55:40 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-02-10 07:55:40 +0000
commit2a7c4526f262d69440b5395786082e02b2ce1871 (patch)
treed893394bf1ea4eb043c185098f562cdeb505ab2b /ruby.c
parentb4f4a187609023a1af454ff18720170adbe1d094 (diff)
* ruby.c (load_file): avoid SEGV on '#' only input.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@2062 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ruby.c')
-rw-r--r--ruby.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/ruby.c b/ruby.c
index fcbee4c46e..e1ee456c16 100644
--- a/ruby.c
+++ b/ruby.c
@@ -791,6 +791,7 @@ load_file(fname, script)
c = rb_io_getc(f);
if (c == INT2FIX('#')) {
line = rb_io_gets(f);
+ if (NIL_P(line)) return;
line_start++;
if (RSTRING(line)->len > 2 && RSTRING(line)->ptr[0] == '!') {