aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2006-03-16 14:05:14 +0000
committerdrh <drh@noemail.net>2006-03-16 14:05:14 +0000
commit3bc0e05c61eb083ecca0499172393627ee86f34b (patch)
treecfdfb631ce52b0d2f46b2696f9688a204d98448f /src/main.c
parentfd2d26bb7debc8719d3958792adb59070febdbc3 (diff)
downloadsqlite-3bc0e05c61eb083ecca0499172393627ee86f34b.tar.gz
sqlite-3bc0e05c61eb083ecca0499172393627ee86f34b.zip
Make provisions in the code to support Provisions to support caching of
serialized statements in the SSE extension. (CVS 3139) FossilOrigin-Name: 5048fae04227857c064c0ba48eb11bedeb467df0
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c
index 1561b1c43..44060403a 100644
--- a/src/main.c
+++ b/src/main.c
@@ -14,7 +14,7 @@
** other files are for internal use by SQLite and should not be
** accessed by users of the library.
**
-** $Id: main.c,v 1.337 2006/03/13 15:06:07 drh Exp $
+** $Id: main.c,v 1.338 2006/03/16 14:05:15 drh Exp $
*/
#include "sqliteInt.h"
#include "os.h"
@@ -109,7 +109,7 @@ int sqlite3_close(sqlite3 *db){
}
#ifdef SQLITE_SSE
- sqlite3_finalize(db->pFetch);
+ sqlite3SseCleanup(db);
#endif
/* If there are any outstanding VMs, return SQLITE_BUSY. */