From e1f5b6d8dfe1543205d5b45d3dcf1d34f5e2e420 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 14 Oct 2016 10:53:40 +0200 Subject: use zend_error instead of zend_error_noreturn --- ext/bcmath/libbcmath/src/outofmem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/bcmath/libbcmath/src/outofmem.c b/ext/bcmath/libbcmath/src/outofmem.c index 05fa484e11..ba92450146 100644 --- a/ext/bcmath/libbcmath/src/outofmem.c +++ b/ext/bcmath/libbcmath/src/outofmem.c @@ -41,5 +41,5 @@ void bc_out_of_memory (void) { - zend_error_noreturn(E_ERROR, "bcmath: out of memory!"); + zend_error(E_ERROR, "bcmath: out of memory!"); } -- cgit v1.2.1