From: Marcus Boerger Date: Thu, 24 Mar 2005 23:52:34 +0000 (+0000) Subject: - Remove potential bad solution for now X-Git-Tag: php-5.0.1b1~689 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bfd0e28e5c68e6fd3c4f1095981b0f986f36b84d;p=php - 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. --- 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;