tony2001 Mon Jan 26 10:42:25 2004 EDT
Modified files:
/php-src/ext/oci8 oci8.c
Log:
change to use different allocator (Sascha, thanks =) )
http://cvs.php.net/diff.php/php-src/ext/oci8/oci8.c?r1=1.242&r2=1.243&ty=u
Index: php-src/ext/oci8/oci8.c
diff -u php-src/ext/oci8/oci8.c:1.242 php-src/ext/oci8/oci8.c:1.243
--- php-src/ext/oci8/oci8.c:1.242 Mon Jan 26 10:25:32 2004
+++ php-src/ext/oci8/oci8.c Mon Jan 26 10:42:24 2004
@@ -22,7 +22,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: oci8.c,v 1.242 2004/01/26 15:25:32 tony2001 Exp $ */
+/* $Id: oci8.c,v 1.243 2004/01/26 15:42:24 tony2001 Exp $ */
/* TODO list:
*
@@ -785,7 +785,7 @@
php_info_print_table_start();
php_info_print_table_row(2, "OCI8 Support", "enabled");
- php_info_print_table_row(2, "Revision", "$Revision: 1.242 $");
+ php_info_print_table_row(2, "Revision", "$Revision: 1.243 $");
sprintf(buf, "%ld", num_persistent);
php_info_print_table_row(2, "Active Persistent Links", buf);
@@ -2649,7 +2649,7 @@
)
);
- smart_str_append_unsigned(&hashed_details, charsetid);
+ smart_str_append_unsigned_ex(&hashed_details, charsetid, 1);
charsetid = 0;
}
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php