From: Michael Wallner Date: Thu, 13 Jul 2006 10:39:00 +0000 (+0000) Subject: - fix WONKY build X-Git-Tag: RELEASE_1_1_0~3 X-Git-Url: https://git.m6w6.name/?a=commitdiff_plain;ds=sidebyside;h=f65531996b3a8ff72e02531b85ed05393f409900;hp=abfef9f65ca91a1d682d85c4f7f3a9fca7a9eee6;p=m6w6%2Fext-http - fix WONKY build --- 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);