diff options
Diffstat (limited to 'meta/recipes-support/sqlite/sqlite3/CVE-2019-19926.patch')
-rw-r--r-- | meta/recipes-support/sqlite/sqlite3/CVE-2019-19926.patch | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/meta/recipes-support/sqlite/sqlite3/CVE-2019-19926.patch b/meta/recipes-support/sqlite/sqlite3/CVE-2019-19926.patch deleted file mode 100644 index 92bc7908bc..0000000000 --- a/meta/recipes-support/sqlite/sqlite3/CVE-2019-19926.patch +++ /dev/null | |||
@@ -1,31 +0,0 @@ | |||
1 | CVE: CVE-2019-19926 | ||
2 | Upstream-Status: Backport | ||
3 | Signed-off-by: Ross Burton <ross.burton@intel.com> | ||
4 | |||
5 | From 4165b1e1e0001165ace9051a70f938099505eadc Mon Sep 17 00:00:00 2001 | ||
6 | From: "D. Richard Hipp" <drh@hwaci.com> | ||
7 | Date: Thu, 19 Dec 2019 22:08:19 +0000 | ||
8 | Subject: [PATCH] Continuation of [e2bddcd4c55ba3cb]: Add another spot where it | ||
9 | is necessary to abort early due to prior errors in sqlite3WindowRewrite(). | ||
10 | |||
11 | FossilOrigin-Name: cba2a2a44cdf138a629109bb0ad088ed4ef67fc66bed3e0373554681a39615d2 | ||
12 | --- | ||
13 | sqlite3.c | 7 ++++--- | ||
14 | sqlite3.h | 2 +- | ||
15 | 2 files changed, 5 insertions(+), 4 deletions(-) | ||
16 | |||
17 | diff --git a/sqlite3.c b/sqlite3.c | ||
18 | index 857c28e..19a474d 100644 | ||
19 | --- a/sqlite3.c | ||
20 | +++ b/sqlite3.c | ||
21 | @@ -128427,6 +128427,7 @@ static int multiSelect( | ||
22 | } | ||
23 | #endif | ||
24 | } | ||
25 | + if( pParse->nErr ) goto multi_select_end; | ||
26 | |||
27 | /* Compute collating sequences used by | ||
28 | ** temporary tables needed to implement the compound select. | ||
29 | -- | ||
30 | 2.24.1 | ||
31 | |||