From eadad87753c250a4e6c53511ad3e613ddc2e85f7 Mon Sep 17 00:00:00 2001 From: Yasuhiro Matsumoto Date: Tue, 18 Sep 2018 17:09:27 +0900 Subject: [PATCH] Fix build --- sqlite3-binding.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sqlite3-binding.c b/sqlite3-binding.c index 49d8f3a..ea35181 100644 --- a/sqlite3-binding.c +++ b/sqlite3-binding.c @@ -219350,7 +219350,7 @@ int sqlite3_user_authenticate( db->auth.nAuthPW = nPW; rc = sqlite3UserAuthCheckLogin(db, "main", &authLevel); db->auth.authLevel = authLevel; - sqlite3ExpirePreparedStatements(db); + sqlite3ExpirePreparedStatements(db, 0); if( rc ){ return rc; /* OOM error, I/O error, etc. */ }