aboutsummaryrefslogtreecommitdiffstats
path: root/vm_method.c
diff options
context:
space:
mode:
authorKazuki Yamaguchi <k@rhe.jp>2016-11-12 23:14:15 +0900
committerKazuki Yamaguchi <k@rhe.jp>2016-11-20 22:11:38 +0900
commit79f87024ee9d0f264c0ab81d0a89e889ab9fde43 (patch)
treec1c4f7d4185c864498c8de6924b0d0bb4acdbd5a /vm_method.c
parent6915b8aeb73b843bf623484597520e95b5b572b7 (diff)
downloadruby-79f87024ee9d0f264c0ab81d0a89e889ab9fde43.tar.gz
proc.c: assume rb_iseq_location_t::first_lineno is always availablewip-topic/thread-fix-start-with-empty-iseq
rb_iseq_location_t::first_lineno (typically referenced as iseq->body->location.first_lineno, where iseq is an rb_iseq_t *) can always be assumed to contain a Fixnum regardless of whether struct rb_iseq_constant_body::line_info_table (likewise, iseq->body->line_info_table) is NULL or non-NULL. This fixes TypeError on starting a new thread with an empty Proc with trace instructions disabled. The TypeError comes from thread_pthread.c, in native_set_thread_name(), where it expects the line number returned from rb_proc_location(). The number can be nil if the line_info_table is NULL. The check seems to be the remains from the days before the dedicated 'first_lineno' field was introduced. So remove it. This also modifies two other places, Proc#to_s and method redefinition code, in the same way.
Diffstat (limited to 'vm_method.c')
-rw-r--r--vm_method.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/vm_method.c b/vm_method.c
index 33e90cf9f1..8aea9b54cc 100644
--- a/vm_method.c
+++ b/vm_method.c
@@ -563,9 +563,9 @@ rb_method_entry_make(VALUE klass, ID mid, VALUE defined_class, rb_method_visibil
default:
break;
}
- if (iseq && !NIL_P(iseq->body->location.path)) {
- int line = iseq->body->line_info_table ? FIX2INT(rb_iseq_first_lineno(iseq)) : 0;
- rb_compile_warning(RSTRING_PTR(iseq->body->location.path), line,
+ if (iseq) {
+ rb_compile_warning(RSTRING_PTR(iseq->body->location.path),
+ FIX2INT(iseq->body->location.first_lineno),
"previous definition of %"PRIsVALUE" was here",
rb_id2str(old_def->original_id));
}