From: Stanislav Malyshev Date: Tue, 30 Apr 2002 14:45:50 +0000 (+0000) Subject: Fix ZE1 build X-Git-Tag: php-4.3.0dev-ZendEngine2-Preview1~332 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f42bb6cfe435047eeab7f1893c95605ac4f3df0f;p=php Fix ZE1 build --- diff --git a/ext/standard/aggregation.c b/ext/standard/aggregation.c index b45d2b8d9b..cea8c8138d 100644 --- a/ext/standard/aggregation.c +++ b/ext/standard/aggregation.c @@ -409,7 +409,7 @@ static void aggregate(INTERNAL_FUNCTION_PARAMETERS, int aggr_what, int aggr_type * time. */ /* OBJECT FIXME!! won't work with non-standard objects */ - Z_OBJ_P(obj)->ce = new_ce; + (Z_OBJ_P(obj))->ce = new_ce; aggr_info_new.new_ce = new_ce; MAKE_STD_ZVAL(aggr_info_new.aggr_members); array_init(aggr_info_new.aggr_members); @@ -630,7 +630,7 @@ PHP_FUNCTION(deaggregate) } /* OBJECT FIXME!! won't work with non-standard objects */ - Z_OBJ_P(obj)->ce = orig_ce; + (Z_OBJ_P(obj))->ce = orig_ce; zend_hash_index_del(BG(aggregation_table), (long)obj); } }