diff options
author | drh <drh@noemail.net> | 2007-08-30 01:19:59 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2007-08-30 01:19:59 +0000 |
commit | fb98264aaba7d2c6cc1661cd21b15281014b8246 (patch) | |
tree | 600bf46f20b8be432f2a32972021ee10f368c6f8 /src/vdbeblob.c | |
parent | 107b25f1bd1126c73d50e6ac67a499faa0e4b34d (diff) | |
download | sqlite-fb98264aaba7d2c6cc1661cd21b15281014b8246.tar.gz sqlite-fb98264aaba7d2c6cc1661cd21b15281014b8246.zip |
Fix for the sqlite3AbortOtherActiveVdbes() problem. (CVS 4328)
FossilOrigin-Name: e40d40a5d41c491bef852a92e5846b273b206909
Diffstat (limited to 'src/vdbeblob.c')
-rw-r--r-- | src/vdbeblob.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vdbeblob.c b/src/vdbeblob.c index 161242db5..d56fbd127 100644 --- a/src/vdbeblob.c +++ b/src/vdbeblob.c @@ -12,7 +12,7 @@ ** ** This file contains code used to implement incremental BLOB I/O. ** -** $Id: vdbeblob.c,v 1.15 2007/08/29 17:43:20 drh Exp $ +** $Id: vdbeblob.c,v 1.16 2007/08/30 01:19:59 drh Exp $ */ #include "sqliteInt.h" @@ -164,7 +164,7 @@ int sqlite3_blob_open( sqlite3VdbeChangeP2(v, 1, pTab->pSchema->schema_cookie); /* Make sure a mutex is held on the table to be accessed */ - sqlite3VdbeUsesBtree(v, iDb, db->aDb[iDb].pBt); + sqlite3VdbeUsesBtree(v, iDb); /* Configure the db number pushed onto the stack */ sqlite3VdbeChangeP1(v, 2, iDb); |