diff options
author | Sascha Schumann <sas@php.net> | 2002-05-04 17:34:41 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2002-05-04 17:34:41 +0000 |
commit | c9981760895fe48b76520e3a536439e057195625 (patch) | |
tree | faa81106b991c9b33009575ccba64131efa75fee /main/php_variables.c | |
parent | 7e05237ed4d8409a58f1561c9cf8304769928e66 (diff) | |
download | php-git-c9981760895fe48b76520e3a536439e057195625.tar.gz |
free_index is set but never used
Diffstat (limited to 'main/php_variables.c')
-rw-r--r-- | main/php_variables.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/main/php_variables.c b/main/php_variables.c index 196a348645..8e5260ccf4 100644 --- a/main/php_variables.c +++ b/main/php_variables.c @@ -61,7 +61,6 @@ PHPAPI void php_register_variable_ex(char *var, zval *val, pval *track_vars_arra int var_len, index_len; zval *gpc_element, **gpc_element_p, **top_gpc_p=NULL; zend_bool is_array; - zend_bool free_index; HashTable *symtable1=NULL; HashTable *symtable2=NULL; @@ -112,7 +111,6 @@ PHPAPI void php_register_variable_ex(char *var, zval *val, pval *track_vars_arra index = var; index_len = var_len; - free_index = 0; while (1) { if (is_array) { |