diff options
| author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-11-12 10:47:46 +0000 |
|---|---|---|
| committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-11-12 10:47:46 +0000 |
| commit | fec4b9aa3708ee8659f0dc680ac21df0c3b15155 (patch) | |
| tree | ae4c7fcc2464a20c70e705b23b2a74c6fec5e775 /thread.c | |
| parent | 48ce70306001b058eb1412b993fcaa96800e8c00 (diff) | |
| download | ruby-fec4b9aa3708ee8659f0dc680ac21df0c3b15155.tar.gz ruby-fec4b9aa3708ee8659f0dc680ac21df0c3b15155.tar.xz ruby-fec4b9aa3708ee8659f0dc680ac21df0c3b15155.zip | |
* thread.c (call_trace_proc): should return value.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13900 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'thread.c')
| -rw-r--r-- | thread.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2902,7 +2902,7 @@ call_trace_proc(VALUE args) rb_thread_method_id_and_klass(GET_THREAD(), &id, &klass); } if (id == ID_ALLOCATOR) - return; + return Qnil; if (klass) { if (TYPE(klass) == T_ICLASS) { klass = RBASIC(klass)->klass; |
