From 1545dd7d6cc54bdfca9bc9f74c42745b514b60c9 Mon Sep 17 00:00:00 2001 From: Cy Schubert Date: Tue, 30 Aug 2022 15:29:34 -0700 Subject: sqlite3: Vendor import of sqlite3 3.39.2 Changes at https://www.sqlite.org/releaselog/3_39_2.html. Obtained from: https://www.sqlite.org/2022/sqlite-autoconf-3390200.tar.gz --- shell.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'shell.c') diff --git a/shell.c b/shell.c index b0da4cc4e92c..e66ae0874f52 100644 --- a/shell.c +++ b/shell.c @@ -4409,7 +4409,7 @@ static const char *re_compile(ReCompiled **ppRe, const char *zIn, int noCase){ pRe->zInit[j++] = (unsigned char)(0xc0 | (x>>6)); pRe->zInit[j++] = 0x80 | (x&0x3f); }else if( x<=0xffff ){ - pRe->zInit[j++] = (unsigned char)(0xd0 | (x>>12)); + pRe->zInit[j++] = (unsigned char)(0xe0 | (x>>12)); pRe->zInit[j++] = 0x80 | ((x>>6)&0x3f); pRe->zInit[j++] = 0x80 | (x&0x3f); }else{ @@ -23078,7 +23078,7 @@ int SQLITE_CDECL wmain(int argc, wchar_t **wargv){ char **argv; #endif #ifdef SQLITE_DEBUG - sqlite3_uint64 mem_main_enter = sqlite3_memory_used(); + sqlite3_int64 mem_main_enter = sqlite3_memory_used(); #endif char *zErrMsg = 0; #ifdef SQLITE_SHELL_WASM_MODE -- cgit v1.3