summaryrefslogtreecommitdiff
path: root/upstream/sqlite3.c.patch
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2021-10-29 17:59:15 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2021-11-02 12:15:07 +0300
commit237f49f66e7692a96f48a6299008bb72082e705f (patch)
treec5f49925200e55c0bc9377fd4fa18d7234baf8e8 /upstream/sqlite3.c.patch
parent12f23c3fa27d8d717ba14042a0c491bd53e40cd0 (diff)
Upgrade to 3.35.5
Diffstat (limited to 'upstream/sqlite3.c.patch')
-rw-r--r--upstream/sqlite3.c.patch18
1 files changed, 0 insertions, 18 deletions
diff --git a/upstream/sqlite3.c.patch b/upstream/sqlite3.c.patch
deleted file mode 100644
index 1f37fcd..0000000
--- a/upstream/sqlite3.c.patch
+++ /dev/null
@@ -1,18 +0,0 @@
---- sqlite3.c.orig 2019-02-25 19:32:08.000000000 +0300
-+++ sqlite3.c 2019-07-31 18:12:21.807566612 +0300
-@@ -29486,6 +29486,7 @@ SQLITE_PRIVATE int sqlite3ThreadJoin(SQL
- assert( rc!=WAIT_IO_COMPLETION );
- bRc = CloseHandle((HANDLE)p->tid);
- assert( bRc );
-+ (void)bRc; /* Unused. */
- }
- if( rc==WAIT_OBJECT_0 ) *ppOut = p->pResult;
- sqlite3_free(p);
-@@ -194877,6 +194878,7 @@ static int sessionPreupdateEqual(
- rc = pSession->hook.xOld(pSession->hook.pCtx, iCol, &pVal);
- }
- assert( rc==SQLITE_OK );
-+ (void)rc; /* Unused. */
- if( sqlite3_value_type(pVal)!=eType ) return 0;
-
- /* A SessionChange object never has a NULL value in a PK column */