diff options
| author | Virendra Thakur <virendra.thakur@kpit.com> | 2023-04-19 16:01:09 +0200 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2023-04-19 08:10:45 -0700 |
| commit | 102abb1c33bfa248ac1b1bb57fefa6bb7a44fe95 (patch) | |
| tree | 3f736dd567cbccfe93b67d66a1d299cbe8ebc2d5 /meta-oe/recipes-extended/p7zip/files | |
| parent | db57123c490e3800d7e0383eb459e78749bcd683 (diff) | |
| download | meta-openembedded-102abb1c33bfa248ac1b1bb57fefa6bb7a44fe95.tar.gz | |
p7zip: Fix for CVE-2016-9296
Add patch to fix CVE-2016-9296
Signed-off-by: Virendra Thakur <virendra.thakur@kpit.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-extended/p7zip/files')
| -rw-r--r-- | meta-oe/recipes-extended/p7zip/files/CVE-2016-9296.patch | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/meta-oe/recipes-extended/p7zip/files/CVE-2016-9296.patch b/meta-oe/recipes-extended/p7zip/files/CVE-2016-9296.patch new file mode 100644 index 0000000000..98e186cbf0 --- /dev/null +++ b/meta-oe/recipes-extended/p7zip/files/CVE-2016-9296.patch | |||
| @@ -0,0 +1,27 @@ | |||
| 1 | p7zip: Update CVE-2016-9296 patch URL. | ||
| 2 | From: Robert Luberda <robert@debian.org> | ||
| 3 | Date: Sat, 19 Nov 2016 08:48:08 +0100 | ||
| 4 | Subject: Fix nullptr dereference (CVE-2016-9296) | ||
| 5 | |||
| 6 | Patch taken from https://sourceforge.net/p/p7zip/bugs/185/ | ||
| 7 | This patch file taken from Debian's patch set for p7zip | ||
| 8 | |||
| 9 | Upstream-Status: Backport [https://sourceforge.net/p/p7zip/bugs/185/] | ||
| 10 | CVE: CVE-2016-9296 | ||
| 11 | |||
| 12 | Signed-off-by: Virendra Thakur <virendra.thakur@kpit.com> | ||
| 13 | |||
| 14 | Index: p7zip_16.02/CPP/7zip/Archive/7z/7zIn.cpp | ||
| 15 | =================================================================== | ||
| 16 | --- p7zip_16.02.orig/CPP/7zip/Archive/7z/7zIn.cpp | ||
| 17 | +++ p7zip_16.02/CPP/7zip/Archive/7z/7zIn.cpp | ||
| 18 | @@ -1097,7 +1097,8 @@ HRESULT CInArchive::ReadAndDecodePackedS | ||
| 19 | if (CrcCalc(data, unpackSize) != folders.FolderCRCs.Vals[i]) | ||
| 20 | ThrowIncorrect(); | ||
| 21 | } | ||
| 22 | - HeadersSize += folders.PackPositions[folders.NumPackStreams]; | ||
| 23 | + if (folders.PackPositions) | ||
| 24 | + HeadersSize += folders.PackPositions[folders.NumPackStreams]; | ||
| 25 | return S_OK; | ||
| 26 | } | ||
| 27 | |||
