diff options
author | Andi Gutmans <andi@php.net> | 2001-08-13 16:13:25 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 2001-08-13 16:13:25 +0000 |
commit | 9a3d4e736c974213e2c0862d420907604e22e5d5 (patch) | |
tree | 070011b98f95da74b5ce0d088e7f9b91ebffe023 /ext/imap | |
parent | 0c0999352f5e3980128023169741fb1092cfd4df (diff) | |
download | php-git-9a3d4e736c974213e2c0862d420907604e22e5d5.tar.gz |
- More ZE2 fixes
Diffstat (limited to 'ext/imap')
-rw-r--r-- | ext/imap/php_imap.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; } |