From b6a73f99bf11c39a457a180a97a6a3bb36529a9c Mon Sep 17 00:00:00 2001 From: "Yukihiro \"Matz\" Matsumoto" Date: Thu, 7 Nov 2013 08:53:14 +0900 Subject: call_iseq will never be NULL --- src/proc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/proc.c b/src/proc.c index 0481e9790..a7e4192aa 100644 --- a/src/proc.c +++ b/src/proc.c @@ -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; -- cgit v1.2.3