summaryrefslogtreecommitdiff
path: root/Zend/zend_builtin_functions.c
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>1999-10-01 23:31:39 +0000
committerAndi Gutmans <andi@php.net>1999-10-01 23:31:39 +0000
commit86357a9c27300d7fdbd3bc712235719c67dd3d8a (patch)
treee2bdaba11bb5af5706f080e4800f66cce5f6f0de /Zend/zend_builtin_functions.c
parent4dd47ffbc1f263afca85cea8c68756d9c19783f1 (diff)
downloadphp-git-86357a9c27300d7fdbd3bc712235719c67dd3d8a.tar.gz
- Move is_ref back to being an unsigned char and not a bit field.
Diffstat (limited to 'Zend/zend_builtin_functions.c')
-rw-r--r--Zend/zend_builtin_functions.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_builtin_functions.c b/Zend/zend_builtin_functions.c
index e05acdfbbd..fd3ce162df 100644
--- a/Zend/zend_builtin_functions.c
+++ b/Zend/zend_builtin_functions.c
@@ -228,11 +228,11 @@ ZEND_FUNCTION(each)
entry = *entry_ptr;
/* add value elements */
- if (entry->EA.is_ref) {
+ if (entry->is_ref) {
tmp = (zval *)emalloc(sizeof(zval));
*tmp = *entry;
zval_copy_ctor(tmp);
- tmp->EA.is_ref=0;
+ tmp->is_ref=0;
tmp->refcount=0;
entry=tmp;
}