]> granicus.if.org Git - php/commitdiff
Fix ZE1 build
authorStanislav Malyshev <stas@php.net>
Tue, 30 Apr 2002 14:45:50 +0000 (14:45 +0000)
committerStanislav Malyshev <stas@php.net>
Tue, 30 Apr 2002 14:45:50 +0000 (14:45 +0000)
ext/standard/aggregation.c

index b45d2b8d9bf8a245847e2850e6297ab4a0655e6e..cea8c8138dd37f64ba43caae36ede9bc749b2d3e 100644 (file)
@@ -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);
        }
 }