From ac6011fd12223817daa9ab93f8208da0281022b6 Mon Sep 17 00:00:00 2001 From: Felipe Pena Date: Wed, 30 Dec 2009 12:50:17 +0000 Subject: [PATCH] - Fixed ZTS build --- http_api.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http_api.c b/http_api.c index 00461d9..7979e7b 100644 --- a/http_api.c +++ b/http_api.c @@ -182,7 +182,7 @@ zval *_http_exception_wrap(zval *old_exception, zval *new_exception, zend_class_ } #if PHP_MAJOR_VERSION == 5 && PHP_MINOR_VERSION >= 3 Z_ADDREF_P(old_exception); - zend_exception_set_previous(new_exception, old_exception); + zend_exception_set_previous(new_exception, old_exception TSRMLS_CC); #endif zval_ptr_dtor(&old_exception); return new_exception; -- 2.30.2