summaryrefslogtreecommitdiff
path: root/main/php_variables.c
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2005-04-24 18:11:23 +0000
committerIlia Alshanetsky <iliaa@php.net>2005-04-24 18:11:23 +0000
commit40d04782e03bf2a102d02f52364f49ca4e7dd2dc (patch)
tree9f05eb89e272daf6c39066d25527f7171777f4a6 /main/php_variables.c
parent5135548c9d9358c08636451be9ec3b3764cbae8c (diff)
downloadphp-git-40d04782e03bf2a102d02f52364f49ca4e7dd2dc.tar.gz
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 0eed752b37..a67b615926 100644
--- a/main/php_variables.c
+++ b/main/php_variables.c
@@ -186,7 +186,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.