List:Commits« Previous MessageNext Message »
From:grichter Date:March 27 2007 7:11am
Subject:PHP mysqlnd svn commit: r262 - trunk/ext/mysqli
View as plain text  
Author: grichter
Date: 2007-03-27 09:11:08 +0200 (Tue, 27 Mar 2007)
New Revision: 262

Modified:
   trunk/ext/mysqli/mysqli.c
Log:
Fix: ZSTR expects pointer


Modified: trunk/ext/mysqli/mysqli.c
===================================================================
--- trunk/ext/mysqli/mysqli.c	2007-03-26 18:45:46 UTC (rev 261)
+++ trunk/ext/mysqli/mysqli.c	2007-03-27 07:11:08 UTC (rev 262)
@@ -787,7 +787,7 @@
 
 		convert_to_string(*values_entry);
 #if PHP_MAJOR_VERSION >= 6
-		php_info_print_table_row(2, ZSTR(string_key), Z_STRVAL_PP(values_entry));
+		php_info_print_table_row(2, ZSTR(&string_key), Z_STRVAL_PP(values_entry));
 #else
 		php_info_print_table_row(2, string_key, Z_STRVAL_PP(values_entry));
 #endif

Thread
PHP mysqlnd svn commit: r262 - trunk/ext/mysqligrichter27 Mar