diff options
| -rw-r--r-- | meta/recipes-support/aspell/aspell/0001-Fix-various-bugs-found-by-OSS-Fuze.patch | 56 | ||||
| -rw-r--r-- | meta/recipes-support/aspell/aspell_0.60.7.bb | 4 |
2 files changed, 59 insertions, 1 deletions
diff --git a/meta/recipes-support/aspell/aspell/0001-Fix-various-bugs-found-by-OSS-Fuze.patch b/meta/recipes-support/aspell/aspell/0001-Fix-various-bugs-found-by-OSS-Fuze.patch new file mode 100644 index 0000000000..259075b37c --- /dev/null +++ b/meta/recipes-support/aspell/aspell/0001-Fix-various-bugs-found-by-OSS-Fuze.patch | |||
| @@ -0,0 +1,56 @@ | |||
| 1 | From 80fa26c74279fced8d778351cff19d1d8f44fe4e Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Kevin Atkinson <kevina@gnu.org> | ||
| 3 | Date: Sun, 4 Aug 2019 04:20:29 -0400 | ||
| 4 | Subject: [PATCH] Fix various bugs found by OSS-Fuze. | ||
| 5 | |||
| 6 | --- | ||
| 7 | common/config.cpp | 2 +- | ||
| 8 | common/file_util.cpp | 1 + | ||
| 9 | common/getdata.cpp | 2 +- | ||
| 10 | 3 files changed, 3 insertions(+), 2 deletions(-) | ||
| 11 | |||
| 12 | Upstream-Status: Backport [https://github.com/GNUAspell/aspell/commit/80fa26c74279fced8d778351cff19d1d8f44fe4e] | ||
| 13 | CVE: CVE-2019-17544 | ||
| 14 | Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com> | ||
| 15 | |||
| 16 | diff --git a/common/config.cpp b/common/config.cpp | ||
| 17 | index 017e741..e117d3c 100644 | ||
| 18 | --- a/common/config.cpp | ||
| 19 | +++ b/common/config.cpp | ||
| 20 | @@ -763,7 +763,7 @@ namespace acommon { | ||
| 21 | } | ||
| 22 | res.append(':'); | ||
| 23 | } | ||
| 24 | - if (res.back() == ':') res.pop_back(); | ||
| 25 | + if (!res.empty() && res.back() == ':') res.pop_back(); | ||
| 26 | } | ||
| 27 | |||
| 28 | struct ListAddHelper : public AddableContainer | ||
| 29 | diff --git a/common/file_util.cpp b/common/file_util.cpp | ||
| 30 | index 8515832..56ea501 100644 | ||
| 31 | --- a/common/file_util.cpp | ||
| 32 | +++ b/common/file_util.cpp | ||
| 33 | @@ -181,6 +181,7 @@ namespace acommon { | ||
| 34 | while ( (dir = els.next()) != 0 ) | ||
| 35 | { | ||
| 36 | path = dir; | ||
| 37 | + if (path.empty()) continue; | ||
| 38 | if (path.back() != '/') path += '/'; | ||
| 39 | unsigned dir_len = path.size(); | ||
| 40 | path += filename; | ||
| 41 | diff --git a/common/getdata.cpp b/common/getdata.cpp | ||
| 42 | index 7e822c9..1b04823 100644 | ||
| 43 | --- a/common/getdata.cpp | ||
| 44 | +++ b/common/getdata.cpp | ||
| 45 | @@ -64,7 +64,7 @@ namespace acommon { | ||
| 46 | char * unescape(char * dest, const char * src) | ||
| 47 | { | ||
| 48 | while (*src) { | ||
| 49 | - if (*src == '\\') { | ||
| 50 | + if (*src == '\\' && src[1]) { | ||
| 51 | ++src; | ||
| 52 | switch (*src) { | ||
| 53 | case 'n': *dest = '\n'; break; | ||
| 54 | -- | ||
| 55 | 2.17.1 | ||
| 56 | |||
diff --git a/meta/recipes-support/aspell/aspell_0.60.7.bb b/meta/recipes-support/aspell/aspell_0.60.7.bb index da99d12630..b565cb3c6e 100644 --- a/meta/recipes-support/aspell/aspell_0.60.7.bb +++ b/meta/recipes-support/aspell/aspell_0.60.7.bb | |||
| @@ -6,7 +6,9 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=7fbc338309ac38fefcd64b04bb903e34" | |||
| 6 | 6 | ||
| 7 | PR = "r1" | 7 | PR = "r1" |
| 8 | 8 | ||
| 9 | SRC_URI = "${GNU_MIRROR}/aspell/aspell-${PV}.tar.gz" | 9 | SRC_URI = "${GNU_MIRROR}/aspell/aspell-${PV}.tar.gz \ |
| 10 | file://0001-Fix-various-bugs-found-by-OSS-Fuze.patch \ | ||
| 11 | " | ||
| 10 | SRC_URI[md5sum] = "8ef2252609c511cd2bb26f3a3932ef28" | 12 | SRC_URI[md5sum] = "8ef2252609c511cd2bb26f3a3932ef28" |
| 11 | SRC_URI[sha256sum] = "5ca8fc8cb0370cc6c9eb5b64c6d1bc5d57b3750dbf17887726c3407d833b70e4" | 13 | SRC_URI[sha256sum] = "5ca8fc8cb0370cc6c9eb5b64c6d1bc5d57b3750dbf17887726c3407d833b70e4" |
| 12 | 14 | ||
