]> granicus.if.org Git - php/commitdiff
Improved fix for bug #70944
authorXinchen Hui <laruence@gmail.com>
Sat, 21 Nov 2015 08:27:56 +0000 (00:27 -0800)
committerXinchen Hui <laruence@gmail.com>
Sat, 21 Nov 2015 08:27:56 +0000 (00:27 -0800)
Zend/tests/bug70944.phpt
Zend/zend_exceptions.c

index d189d9eab430b4c8a061f5ba1c93afb98526916d..7584384a413120a330216fcc828d58550c41a829 100644 (file)
@@ -2,15 +2,28 @@
 Bug #70944 (try{ } finally{} can create infinite chains of exceptions)
 --FILE--
 <?php
-$e = new Exception("Bar");
 try {
-         throw new Exception("Foo", 0, $e);
-} finally {
-         throw $e;
+       $e = new Exception("Foo");
+       try {
+               throw  new Exception("Bar", 0, $e);
+       } finally {
+               throw $e;
+       }
+} catch (Exception $e) {
+       var_dump($e->getMessage());
+}
+
+try {
+       $e = new Exception("Foo");
+       try {
+               throw new Exception("Bar", 0, $e);
+       } finally {
+               throw new Exception("Dummy", 0, $e);
+       }
+} catch (Exception $e) {
+       var_dump($e->getMessage());
 }
 ?>
---EXPECTF--
-Fatal error: Uncaught exception 'Exception' with message 'Bar' in %sbug70944.php:%d
-Stack trace:
-#0 {main}
-  thrown in %sbug70944.php on line %d
+--EXPECT--
+string(3) "Foo"
+string(5) "Dummy"
index d1aa6fe9f17f98ea56c3ea15eb7dfdf7fe7cc31f..4b38829cd9b53d80a644688ed29479b836da1cc4 100644 (file)
@@ -45,14 +45,15 @@ void zend_exception_set_previous(zval *exception, zval *add_previous TSRMLS_DC)
                zend_error(E_ERROR, "Cannot set non exception as previous exception");
                return;
        }
-       ancestor = zend_read_property(default_exception_ce, add_previous, "previous", sizeof("previous")-1, 1 TSRMLS_CC);
-       while (Z_TYPE_P(ancestor) == IS_OBJECT) { 
-               if (Z_OBJ_HANDLE_P(ancestor) == Z_OBJ_HANDLE_P(exception)) {
-                       return;
-               }
-               ancestor = zend_read_property(default_exception_ce, ancestor, "previous", sizeof("previous")-1, 1 TSRMLS_CC);
-       }
        while (exception && exception != add_previous && Z_OBJ_HANDLE_P(exception) != Z_OBJ_HANDLE_P(add_previous)) {
+               ancestor = zend_read_property(default_exception_ce, add_previous, "previous", sizeof("previous")-1, 1 TSRMLS_CC);
+               while (Z_TYPE_P(ancestor) == IS_OBJECT) {
+                       if (Z_OBJ_HANDLE_P(ancestor) == Z_OBJ_HANDLE_P(exception)) {
+                               zval_ptr_dtor(&add_previous);
+                               return;
+                       }
+                       ancestor = zend_read_property(default_exception_ce, ancestor, "previous", sizeof("previous")-1, 1 TSRMLS_CC);
+               }
                previous = zend_read_property(default_exception_ce, exception, "previous", sizeof("previous")-1, 1 TSRMLS_CC);
                if (Z_TYPE_P(previous) == IS_NULL) {
                        zend_update_property(default_exception_ce, exception, "previous", sizeof("previous")-1, add_previous TSRMLS_CC);