diff options
author | Zeev Suraski <zeev@php.net> | 2001-07-15 19:02:20 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2001-07-15 19:02:20 +0000 |
commit | c4f2e0197b458c427d84db12a0676158b9321045 (patch) | |
tree | 81f13ff4ab6b3e2faa55f2c202b6d76063e25276 /Zend/zend_variables.c | |
parent | 563aacdb66d1afabad8a6d79134196c9db0e0008 (diff) | |
download | php-git-c4f2e0197b458c427d84db12a0676158b9321045.tar.gz |
Time to bid this old timer goodbye - get rid of var_uninit()
Diffstat (limited to 'Zend/zend_variables.c')
-rw-r--r-- | Zend/zend_variables.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Zend/zend_variables.c b/Zend/zend_variables.c index 441a5d29b0..260fb14321 100644 --- a/Zend/zend_variables.c +++ b/Zend/zend_variables.c @@ -32,12 +32,6 @@ ZEND_API char *empty_string = ""; /* in order to save emalloc() and efree() time */ -ZEND_API inline void var_uninit(zval *var) -{ - var->type = IS_NULL; -} - - ZEND_API void _zval_dtor(zval *zvalue ZEND_FILE_LINE_DC) { if (zvalue->type==IS_LONG) { |