tony2001 Sat Jan 24 13:08:37 2009 UTC
Modified files:
/php-src/ext/sqlite3 sqlite3.c
Log:
fix build
http://cvs.php.net/viewvc.cgi/php-src/ext/sqlite3/sqlite3.c?r1=1.32&r2=1.33&diff_format=u
Index: php-src/ext/sqlite3/sqlite3.c
diff -u php-src/ext/sqlite3/sqlite3.c:1.32 php-src/ext/sqlite3/sqlite3.c:1.33
--- php-src/ext/sqlite3/sqlite3.c:1.32 Sat Jan 24 12:16:57 2009
+++ php-src/ext/sqlite3/sqlite3.c Sat Jan 24 13:08:35 2009
@@ -16,7 +16,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: sqlite3.c,v 1.32 2009/01/24 12:16:57 scottmac Exp $ */
+/* $Id: sqlite3.c,v 1.33 2009/01/24 13:08:35 tony2001 Exp $ */
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -1080,7 +1080,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