From 87a5f2c4862d823c16b562103a9b83ae732b5ec6 Mon Sep 17 00:00:00 2001 From: Xinchen Hui Date: Mon, 10 Aug 2015 21:48:17 +0800 Subject: [PATCH] Fixed no return statement in function returning non-void --- Zend/zend_compile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c index 8fd71d0aaf..c669c1f5cc 100644 --- a/Zend/zend_compile.c +++ b/Zend/zend_compile.c @@ -3505,7 +3505,7 @@ static int zend_handle_loops_and_finally_ex(zend_long depth) /* {{{ */ static int zend_handle_loops_and_finally(void) /* {{{ */ { - zend_handle_loops_and_finally_ex(zend_stack_count(&CG(loop_var_stack)) + 1); + return zend_handle_loops_and_finally_ex(zend_stack_count(&CG(loop_var_stack)) + 1); } /* }}} */ -- 2.50.1