summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-20 07:44:03 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-20 07:44:03 +0000
commit7a8d52c7cd2d8a14e8933a501eda588f47d01653 (patch)
tree034c79c0e3088fe5bf3f74b7895e1ab2006dcf68
parent35e926ca1fb6600c1c9461d4144c999bc82c1805 (diff)
downloadruby-7a8d52c7cd2d8a14e8933a501eda588f47d01653.tar.gz
ruby-7a8d52c7cd2d8a14e8933a501eda588f47d01653.tar.xz
ruby-7a8d52c7cd2d8a14e8933a501eda588f47d01653.zip
* iseq.c (find_line_no): return 0 if not found.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14357 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--iseq.c3
2 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index d1dc7117d..5b4ec27e0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Thu Dec 20 16:42:55 2007 Koichi Sasada <ko1@atdot.net>
+
+ * iseq.c (find_line_no): return 0 if not found.
+
Thu Dec 20 16:04:17 2007 Koichi Sasada <ko1@atdot.net>
* insnhelper.ci, vm.c, vm_core.h: change interface of
diff --git a/iseq.c b/iseq.c
index 6ad0e8d25..f316edab3 100644
--- a/iseq.c
+++ b/iseq.c
@@ -559,6 +559,9 @@ find_line_no(rb_iseq_t *iseq, unsigned long pos)
if (entry) {
return entry->line_no;
}
+ else {
+ return 0;
+ }
}
static unsigned short