diff options
| author | Yukihiro Matz Matsumoto <[email protected]> | 2012-12-22 00:11:45 +0900 |
|---|---|---|
| committer | Yukihiro Matz Matsumoto <[email protected]> | 2012-12-22 00:11:45 +0900 |
| commit | bfd41bd6bf09becfc035c9b9805b29b9ebbf532c (patch) | |
| tree | fb7c46bc119046d3763e3000daf6ed9d3f658726 /tools | |
| parent | 141d0d841c05a2ea75b3eeaec7cc26d9ba0e3307 (diff) | |
| download | mruby-bfd41bd6bf09becfc035c9b9805b29b9ebbf532c.tar.gz mruby-bfd41bd6bf09becfc035c9b9805b29b9ebbf532c.zip | |
avoid printing backtrace line with unknown place info
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/mruby/mruby.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/mruby/mruby.c b/tools/mruby/mruby.c index 99af7bc5d..9d6182238 100644 --- a/tools/mruby/mruby.c +++ b/tools/mruby/mruby.c @@ -202,6 +202,7 @@ showcallinfo(mrb_state *mrb) } } } + if (line == -1) continue; if (ci->target_class == ci->proc->target_class) sep = "."; else |
