From f65531996b3a8ff72e02531b85ed05393f409900 Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Thu, 13 Jul 2006 10:39:00 +0000 Subject: [PATCH] - fix WONKY build --- http_querystring_object.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http_querystring_object.c b/http_querystring_object.c index c6a1bdb..d8de9e1 100644 --- a/http_querystring_object.c +++ b/http_querystring_object.c @@ -216,7 +216,7 @@ static inline zval *_http_querystring_instantiate(zend_bool global TSRMLS_DC) MAKE_STD_ZVAL(zobj); Z_TYPE_P(zobj) = IS_OBJECT; - Z_OBJVAL_P(zobj) = http_querystring_object_new(http_querystring_object_ce); + zobj->value.obj = http_querystring_object_new(http_querystring_object_ce); zend_call_method_with_1_params(&zobj, Z_OBJCE_P(zobj), NULL, "__construct", NULL, zglobal); zval_ptr_dtor(&zglobal); -- 2.30.2