From 9a3d4e736c974213e2c0862d420907604e22e5d5 Mon Sep 17 00:00:00 2001 From: Andi Gutmans Date: Mon, 13 Aug 2001 16:13:25 +0000 Subject: - More ZE2 fixes --- ext/imap/php_imap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ext/imap/php_imap.c') diff --git a/ext/imap/php_imap.c b/ext/imap/php_imap.c index 2c4afdf5a0..10a820c4a1 100644 --- a/ext/imap/php_imap.c +++ b/ext/imap/php_imap.c @@ -244,7 +244,7 @@ static int add_assoc_object(zval *arg, char *key, zval *tmp) HashTable *symtable; if (arg->type == IS_OBJECT) { - symtable = arg->value.obj.properties; + symtable = Z_OBJPROP_P(arg); } else { symtable = arg->value.ht; } @@ -259,7 +259,7 @@ static inline int add_next_index_object(zval *arg, zval *tmp) HashTable *symtable; if (arg->type == IS_OBJECT) { - symtable = arg->value.obj.properties; + symtable = Z_OBJPROP_P(arg); } else { symtable = arg->value.ht; } -- cgit v1.2.1