codegen.c: avoid uninitialized local variable.

parent b3fe9da3
......@@ -1493,6 +1493,7 @@ readint(codegen_scope *s, const char *p, int base, mrb_bool *overflow)
n = c - 'A' + 10; break;
default:
codegen_error(s, "malformed readint input");
*overflow = TRUE;
/* not reached */
return result;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment