tony2001 Sat Jan 24 13:08:05 2009 UTC
Modified files: (Branch: PHP_5_3)
/php-src/ext/sqlite3 sqlite3.c
Log:
fix build
http://cvs.php.net/viewvc.cgi/php-src/ext/sqlite3/sqlite3.c?r1=1.1.2.29&r2=1.1.2.30&diff_format=u
Index: php-src/ext/sqlite3/sqlite3.c
diff -u php-src/ext/sqlite3/sqlite3.c:1.1.2.29
php-src/ext/sqlite3/sqlite3.c:1.1.2.30
--- php-src/ext/sqlite3/sqlite3.c:1.1.2.29 Sat Jan 24 12:17:47 2009
+++ php-src/ext/sqlite3/sqlite3.c Sat Jan 24 13:08:04 2009
@@ -16,7 +16,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: sqlite3.c,v 1.1.2.29 2009/01/24 12:17:47 scottmac Exp $ */
+/* $Id: sqlite3.c,v 1.1.2.30 2009/01/24 13:08:04 tony2001 Exp $ */
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -1053,7 +1053,7 @@
sqlite3_stream->position = 0;
sqlite3_stream->size = sqlite3_blob_bytes(blob);
- stream = php_stream_alloc_rel(&php_stream_sqlite3_ops, sqlite3_stream,
0, "rb");
+ stream = php_stream_alloc(&php_stream_sqlite3_ops, sqlite3_stream, 0,
"rb");
if (stream) {
php_stream_to_zval(stream, return_value);
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php