call_iseq will never be NULL

This commit is contained in:
Yukihiro "Matz" Matsumoto
2013-11-07 08:53:14 +09:00
parent c8936754e8
commit b6a73f99bf
+1 -1
View File
@@ -184,7 +184,7 @@ mrb_init_proc(mrb_state *mrb)
mrb_irep *call_irep = (mrb_irep *)mrb_alloca(mrb, sizeof(mrb_irep));
static const mrb_irep mrb_irep_zero = { 0 };
if ( call_iseq == NULL || call_irep == NULL )
if (call_irep == NULL)
return;
*call_irep = mrb_irep_zero;