From bb827588f8c9dcaf0cb81d43cfac74d9ca02b311 Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Tue, 19 Sep 2006 22:55:34 +0000 Subject: [PATCH] - attempt to fix gcc-2.95 build --- http_request_datashare_api.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/http_request_datashare_api.c b/http_request_datashare_api.c index 2bf0563..013ecac 100644 --- a/http_request_datashare_api.c +++ b/http_request_datashare_api.c @@ -223,10 +223,13 @@ static void http_request_datashare_destroy_handles(void *el) { zval **r = (zval **) el; TSRMLS_FETCH(); - getObjectEx(http_request_object, obj, *r); - curl_easy_setopt(obj->request->ch, CURLOPT_SHARE, NULL); - zval_ptr_dtor(r); + { /* gcc 2.95 needs these braces */ + getObjectEx(http_request_object, obj, *r); + + curl_easy_setopt(obj->request->ch, CURLOPT_SHARE, NULL); + zval_ptr_dtor(r); + } } #ifdef ZTS -- 2.30.2