rasmus Sat Aug 30 18:27:30 2008 UTC Modified files: (Branch: PHP_5_3) /php-src/main php_variables.c Log: Oops, fix the assert. http://cvs.php.net/viewvc.cgi/php-src/main/php_variables.c?r1=1.104.2.10.2.11.2.6&r2=1.104.2.10.2.11.2.7&diff_format=u Index: php-src/main/php_variables.c diff -u php-src/main/php_variables.c:1.104.2.10.2.11.2.6 php-src/main/php_variables.c:1.104.2.10.2.11.2.7 --- php-src/main/php_variables.c:1.104.2.10.2.11.2.6 Sat Aug 30 16:47:46 2008 +++ php-src/main/php_variables.c Sat Aug 30 18:27:29 2008 @@ -17,7 +17,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: php_variables.c,v 1.104.2.10.2.11.2.6 2008/08/30 16:47:46 rasmus Exp $ */ +/* $Id: php_variables.c,v 1.104.2.10.2.11.2.7 2008/08/30 18:27:29 rasmus Exp $ */ #include <stdio.h> #include "php.h" @@ -68,7 +68,7 @@ zend_bool is_array = 0; HashTable *symtable1 = NULL; - assert(var != NULL); + assert(var_name != NULL); if (track_vars_array) { symtable1 = Z_ARRVAL_P(track_vars_array);
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php