summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/sqlite/patches
diff options
context:
space:
mode:
authorAndré Klitzing <aklitzing@gmail.com>2017-10-03 17:56:37 +0200
committerThiago Macieira <thiago.macieira@intel.com>2017-10-27 00:54:15 +0000
commitefb1a13282ec0d09326b0550df67b7b8e7e9a31e (patch)
tree7a0dabdc4311fcf123f1935bd26b5e5b1d490adc /src/3rdparty/sqlite/patches
parent76a6b3294223f52568cd8c6190edceedbdca70ce (diff)
Update bundled sqlite to 3.20.1
[ChangeLog][Third-Party Code] Sqlite was updated to version 3.20.1 Change-Id: I538a4de9b915fd1655479e44aa7ca8bae7b9a0b3 Reviewed-by: Andy Shaw <andy.shaw@qt.io>
Diffstat (limited to 'src/3rdparty/sqlite/patches')
-rw-r--r--src/3rdparty/sqlite/patches/0001-Fix-CVE-2017-10989-in-sqlite.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/3rdparty/sqlite/patches/0001-Fix-CVE-2017-10989-in-sqlite.patch b/src/3rdparty/sqlite/patches/0001-Fix-CVE-2017-10989-in-sqlite.patch
deleted file mode 100644
index 26d022f6c6..0000000000
--- a/src/3rdparty/sqlite/patches/0001-Fix-CVE-2017-10989-in-sqlite.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-diff --git a/src/3rdparty/sqlite/sqlite3.c b/src/3rdparty/sqlite/sqlite3.c
-index 7f5e75921f..f5c6180a03 100644
---- a/src/3rdparty/sqlite/sqlite3.c
-+++ b/src/3rdparty/sqlite/sqlite3.c
-@@ -165733,6 +165733,10 @@ static int getNodeSize(
- rc = getIntFromStmt(db, zSql, &pRtree->iNodeSize);
- if( rc!=SQLITE_OK ){
- *pzErr = sqlite3_mprintf("%s", sqlite3_errmsg(db));
-+ }else if( pRtree->iNodeSize<(512-64) ){
-+ rc = SQLITE_CORRUPT;
-+ *pzErr = sqlite3_mprintf("undersize RTree blobs in \"%q_node\"",
-+ pRtree->zName);
- }
- }
-