1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-30 19:03:16 +03:00

Fix a problem in the userauth extension causing it to occasionally set "PRAGMA count_changes" (and some others) to true.

FossilOrigin-Name: 3a62f64222ebd176c06e89b9fe5275b7b1f09df0afbae1c5c148a4e527e9d80b
This commit is contained in:
dan
2020-01-21 13:40:35 +00:00
parent 988af251d8
commit 39ef8b31fb
3 changed files with 9 additions and 9 deletions

View File

@ -40,7 +40,7 @@ static sqlite3_stmt *sqlite3UserAuthPrepare(
char *zSql;
int rc;
va_list ap;
int savedFlags = db->flags;
u64 savedFlags = db->flags;
va_start(ap, zFormat);
zSql = sqlite3_vmprintf(zFormat, ap);