summaryrefslogtreecommitdiff
path: root/Zend/zend_API.h
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/zend_API.h')
-rw-r--r--Zend/zend_API.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Zend/zend_API.h b/Zend/zend_API.h
index beba58f459..85eb885de3 100644
--- a/Zend/zend_API.h
+++ b/Zend/zend_API.h
@@ -186,7 +186,7 @@ ZEND_API int add_property_stringl(zval *arg, char *key, char *str, uint length,
var->value.str.val = (str); \
var->value.str.len = strlen((str)); \
var->type = IS_STRING; \
- var->is_ref=0; \
+ var->EA=0; \
var->refcount=1; \
zend_hash_update(&EG(symbol_table), (n), strlen((n))+1, &var, sizeof(zval *), NULL); \
} \
@@ -199,7 +199,7 @@ ZEND_API int add_property_stringl(zval *arg, char *key, char *str, uint length,
var->value.str.val = (v); \
var->value.str.len = (l); \
var->type = IS_STRING; \
- var->is_ref=0; \
+ var->EA=0; \
var->refcount=1; \
zend_hash_update(&EG(symbol_table), name, strlen(name)+1, &var, sizeof(zval *), NULL); \
} \
@@ -210,7 +210,7 @@ ZEND_API int add_property_stringl(zval *arg, char *key, char *str, uint length,
\
var->value.lval = (v); \
var->type = IS_LONG; \
- var->is_ref=0; \
+ var->EA=0; \
var->refcount=1; \
zend_hash_update(&EG(symbol_table), (n), strlen((n))+1, &var, sizeof(zval *), NULL); \
} \
@@ -221,7 +221,7 @@ ZEND_API int add_property_stringl(zval *arg, char *key, char *str, uint length,
\
var->value.dval = (v); \
var->type = IS_DOUBLE; \
- var->is_ref=0; \
+ var->EA=0; \
var->refcount=1; \
zend_hash_update(&EG(symbol_table)), (n), strlen((n))+1, &var, sizeof(zval *), NULL); \
} \