X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;ds=sidebyside;f=http_api.c;h=00461d9d7e49050e8212769e0667548eaa6f2486;hb=c3ed5d97ba0f91010327f20eba41d7e07f5f243e;hp=04247fa310d771ac16a9fc99e810671ff1f7db56;hpb=195df77a27048303b611e834d3f4eda03357ca2c;p=m6w6%2Fext-http diff --git a/http_api.c b/http_api.c index 04247fa..00461d9 100644 --- a/http_api.c +++ b/http_api.c @@ -180,7 +180,10 @@ zval *_http_exception_wrap(zval *old_exception, zval *new_exception, zend_class_ copy_bt_args(old_exception, new_exception TSRMLS_CC); copy_bt_args(old_exception, sub_exception TSRMLS_CC); } - +#if PHP_MAJOR_VERSION == 5 && PHP_MINOR_VERSION >= 3 + Z_ADDREF_P(old_exception); + zend_exception_set_previous(new_exception, old_exception); +#endif zval_ptr_dtor(&old_exception); return new_exception; }