diff options
author | Antony Dovgal <tony2001@php.net> | 2009-01-24 13:08:04 +0000 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2009-01-24 13:08:04 +0000 |
commit | 8e2c587a5199832ded6f35f6b74575d8705e9e75 (patch) | |
tree | 5456dd7cb67a24a3a1028c5a984b7dd77c3d1ef7 /ext/sqlite3/sqlite3.c | |
parent | 4e71f2a5fc3f54b0b7b2d0020ba99afccc42f0b4 (diff) | |
download | php-git-8e2c587a5199832ded6f35f6b74575d8705e9e75.tar.gz |
fix build
Diffstat (limited to 'ext/sqlite3/sqlite3.c')
-rw-r--r-- | ext/sqlite3/sqlite3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/sqlite3/sqlite3.c b/ext/sqlite3/sqlite3.c index dd3a9f9e32..3a57cad6a5 100644 --- a/ext/sqlite3/sqlite3.c +++ b/ext/sqlite3/sqlite3.c @@ -1053,7 +1053,7 @@ PHP_METHOD(sqlite3, openBlob) 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); |