- fix WONKY build
authorMichael Wallner <mike@php.net>
Thu, 13 Jul 2006 10:39:00 +0000 (10:39 +0000)
committerMichael Wallner <mike@php.net>
Thu, 13 Jul 2006 10:39:00 +0000 (10:39 +0000)
http_querystring_object.c

index c6a1bdbe93a49fb4df8717502309874a6d51fc11..d8de9e16bb3bdbc6d7eabf05b8aaca892c0bfa7b 100644 (file)
@@ -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);