summaryrefslogtreecommitdiff
path: root/main/php_variables.c
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2005-04-24 18:11:55 +0000
committerIlia Alshanetsky <iliaa@php.net>2005-04-24 18:11:55 +0000
commit320dd75443d0f51624997834d44ac77ab94564e0 (patch)
tree7d6edb2dfd7bb1ed858763d2142a193d712b5c52 /main/php_variables.c
parent409c3fd4a688643b915313ddd11c18f6a15ae930 (diff)
downloadphp-git-320dd75443d0f51624997834d44ac77ab94564e0.tar.gz
MFB: zval** not zval*
Diffstat (limited to 'main/php_variables.c')
-rw-r--r--main/php_variables.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/php_variables.c b/main/php_variables.c
index e0883fc5fa..185d849c20 100644
--- a/main/php_variables.c
+++ b/main/php_variables.c
@@ -182,7 +182,7 @@ plain_var:
if (!index) {
zend_hash_next_index_insert(symtable1, &gpc_element, sizeof(zval *), (void **) &gpc_element_p);
} else {
- zval *tmp;
+ zval **tmp;
char *escaped_index = php_addslashes(index, index_len, &index_len, 0 TSRMLS_CC);
/*
* According to rfc2965, more specific paths are listed above the less specific ones.