From bfd0e28e5c68e6fd3c4f1095981b0f986f36b84d Mon Sep 17 00:00:00 2001 From: Marcus Boerger Date: Thu, 24 Mar 2005 23:52:34 +0000 Subject: [PATCH] - Remove potential bad solution for now # This seemed to be necessary since there were cases where exceptions were # ignored by exit() with the result of a silent exit without showing the # pending exception. Since atm we cannot reproduce it anymore we drop it. --- Zend/zend_vm_def.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/Zend/zend_vm_def.h b/Zend/zend_vm_def.h index b84949e049..0823420e3a 100644 --- a/Zend/zend_vm_def.h +++ b/Zend/zend_vm_def.h @@ -3254,9 +3254,6 @@ ZEND_VM_HANDLER(79, ZEND_EXIT, CONST|TMP|VAR|UNUSED|CV, ANY) { zend_op *opline = EX(opline); - if (EG(exception)) { - ZEND_VM_RETURN(); - } if (OP1_TYPE != IS_UNUSED) { zval *ptr; zend_free_op free_op1; -- 2.50.1