iliaa           Sun Apr 24 14:11:23 2005 EDT

  Modified files:              (Branch: PHP_5_0)
    /php-src/main       php_variables.c 
  Log:
  zval** not zval*.
  
  
http://cvs.php.net/diff.php/php-src/main/php_variables.c?r1=1.81.2.6&r2=1.81.2.7&ty=u
Index: php-src/main/php_variables.c
diff -u php-src/main/php_variables.c:1.81.2.6 
php-src/main/php_variables.c:1.81.2.7
--- php-src/main/php_variables.c:1.81.2.6       Sun Apr 24 13:52:58 2005
+++ php-src/main/php_variables.c        Sun Apr 24 14:11:23 2005
@@ -17,7 +17,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: php_variables.c,v 1.81.2.6 2005/04/24 17:52:58 iliaa Exp $ */
+/* $Id: php_variables.c,v 1.81.2.7 2005/04/24 18:11:23 iliaa Exp $ */
 
 #include <stdio.h>
 #include "php.h"
@@ -186,7 +186,7 @@
                        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.

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to