diff options
author | mattn <mattn.jp@gmail.com> | 2018-09-18 18:41:35 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-18 18:41:35 +0900 |
commit | 6de94b0b99071c779a0a8d4072b65d95c42c12d6 (patch) | |
tree | 7ae55078bd3eb3d4c4979ed4507a6c61366a577e | |
parent | Merge pull request #636 from mattn/fix-635 (diff) | |
parent | Fix build (diff) | |
download | golite-6de94b0b99071c779a0a8d4072b65d95c42c12d6.tar.gz golite-6de94b0b99071c779a0a8d4072b65d95c42c12d6.tar.xz |
Merge pull request #637 from mattn/fix-build2
Fix build
-rw-r--r-- | sqlite3-binding.c | 2 |
1 files changed, 1 insertions, 1 deletions
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. */ } |