rasmus Sat Aug 30 18:28:01 2008 UTC
Modified files: (Branch: PHP_5_2)
/php-src/main php_variables.c
Log:
Fix the assert
http://cvs.php.net/viewvc.cgi/php-src/main/php_variables.c?r1=1.104.2.10.2.13&r2=1.104.2.10.2.14&diff_format=u
Index: php-src/main/php_variables.c
diff -u php-src/main/php_variables.c:1.104.2.10.2.13
php-src/main/php_variables.c:1.104.2.10.2.14
--- php-src/main/php_variables.c:1.104.2.10.2.13 Sat Aug 30 16:50:24 2008
+++ php-src/main/php_variables.c Sat Aug 30 18:28:01 2008
@@ -17,7 +17,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: php_variables.c,v 1.104.2.10.2.13 2008/08/30 16:50:24 rasmus Exp $ */
+/* $Id: php_variables.c,v 1.104.2.10.2.14 2008/08/30 18:28:01 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