summaryrefslogtreecommitdiff
path: root/Zend/zend_variables.c
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>2000-01-04 13:22:58 +0000
committerAndi Gutmans <andi@php.net>2000-01-04 13:22:58 +0000
commitbdefd5da154ec567941c71d71c11b385bdd95182 (patch)
treee23526736fce2f15613cb13669ec948eca5d41f6 /Zend/zend_variables.c
parent402a9db2fef374ede7c7d4ed169aaa5ccdf2a891 (diff)
downloadphp-git-bdefd5da154ec567941c71d71c11b385bdd95182.tar.gz
- Change IS_UNSET -> IS_NULL
Diffstat (limited to 'Zend/zend_variables.c')
-rw-r--r--Zend/zend_variables.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/zend_variables.c b/Zend/zend_variables.c
index 71a9861345..ae795524cd 100644
--- a/Zend/zend_variables.c
+++ b/Zend/zend_variables.c
@@ -48,7 +48,7 @@ ZEND_API inline void var_reset(zval *var)
ZEND_API inline void var_uninit(zval *var)
{
- var->type = IS_UNSET;
+ var->type = IS_NULL;
}
@@ -82,7 +82,7 @@ ZEND_API int _zval_dtor(zval *zvalue ZEND_FILE_LINE_DC)
case IS_LONG:
case IS_DOUBLE:
case IS_BOOL:
- case IS_UNSET:
+ case IS_NULL:
default:
return 1;
break;
@@ -115,7 +115,7 @@ ZEND_API int _zval_copy_ctor(zval *zvalue ZEND_FILE_LINE_DC)
break;
case IS_BOOL:
case IS_LONG:
- case IS_UNSET:
+ case IS_NULL:
break;
case IS_STRING:
if (zvalue->value.str.val) {