mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
Fixed dead assignment in 'backtrace.c' reported by 'clang-analyzer'
This commit is contained in:
@@ -71,7 +71,6 @@ output_backtrace(mrb_state *mrb, mrb_int ciidx, mrb_code *pc0, output_stream_fun
|
||||
for (i = ciidx; i >= 0; i--) {
|
||||
ci = &mrb->c->cibase[i];
|
||||
filename = NULL;
|
||||
lineno = -1;
|
||||
|
||||
if (!ci->proc) continue;
|
||||
if (MRB_PROC_CFUNC_P(ci->proc)) {
|
||||
|
||||
Reference in New Issue
Block a user