diff options
author | Anuj Mittal <anuj.mittal@intel.com> | 2020-02-04 13:51:45 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-02-05 12:00:34 +0000 |
commit | 73333dd4b8f80f9d6224b319f476a7bf0e27b83c (patch) | |
tree | 0d508c160ed67efaa95010759108ce6792b7e718 /meta/recipes-support/sqlite/sqlite3/CVE-2019-20218.patch | |
parent | 0ca68e153dc933878c805d7bda6c72b55043fd12 (diff) | |
download | poky-73333dd4b8f80f9d6224b319f476a7bf0e27b83c.tar.gz |
sqlite3: upgrade 3.30.1 -> 3.31.1
(From OE-Core rev: 621ea68239763ce8740731e745c5002c956d4c67)
Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/sqlite/sqlite3/CVE-2019-20218.patch')
-rw-r--r-- | meta/recipes-support/sqlite/sqlite3/CVE-2019-20218.patch | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/meta/recipes-support/sqlite/sqlite3/CVE-2019-20218.patch b/meta/recipes-support/sqlite/sqlite3/CVE-2019-20218.patch deleted file mode 100644 index fb6cd6df2d..0000000000 --- a/meta/recipes-support/sqlite/sqlite3/CVE-2019-20218.patch +++ /dev/null | |||
@@ -1,31 +0,0 @@ | |||
1 | CVE: CVE-2019-20218 | ||
2 | Upstream-Status: Backport | ||
3 | Signed-off-by: Ross Burton <ross.burton@intel.com> | ||
4 | |||
5 | From 6bbd76d34f29f61483791231f2ce579dcadab8a5 Mon Sep 17 00:00:00 2001 | ||
6 | From: Dan Kennedy <danielk1977@gmail.com> | ||
7 | Date: Fri, 27 Dec 2019 20:54:42 +0000 | ||
8 | Subject: [PATCH] Do not attempt to unwind the WITH stack in the Parse object | ||
9 | following an error. This fixes a separate case to [de6e6d68]. | ||
10 | |||
11 | FossilOrigin-Name: d29edef93451cc67a5d69c1cce1b1832d9ca8fff1f600afdd51338b74d077b92 | ||
12 | --- | ||
13 | sqlite3.c | 2 +- | ||
14 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
15 | |||
16 | diff --git a/sqlite3.c b/sqlite3.c | ||
17 | index 5bc06c8..408ec4c 100644 | ||
18 | --- a/sqlite3.c | ||
19 | +++ b/sqlite3.c | ||
20 | @@ -130570,7 +130570,7 @@ static int selectExpander(Walker *pWalker, Select *p){ | ||
21 | |||
22 | /* Process NATURAL keywords, and ON and USING clauses of joins. | ||
23 | */ | ||
24 | - if( db->mallocFailed || sqliteProcessJoin(pParse, p) ){ | ||
25 | + if( pParse->nErr || db->mallocFailed || sqliteProcessJoin(pParse, p) ){ | ||
26 | return WRC_Abort; | ||
27 | } | ||
28 | |||
29 | -- | ||
30 | 2.24.1 | ||
31 | |||