]> granicus.if.org Git - php/commitdiff
- Remove potential bad solution for now
authorMarcus Boerger <helly@php.net>
Thu, 24 Mar 2005 23:52:34 +0000 (23:52 +0000)
committerMarcus Boerger <helly@php.net>
Thu, 24 Mar 2005 23:52:34 +0000 (23:52 +0000)
# 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

index b84949e0496163d4a143f0cc7d9202c0f40027dc..0823420e3a66697680ffc0a634b76a276b4733c7 100644 (file)
@@ -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;