summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZ Stern <zalman@google.com>2020-05-14 16:18:17 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2020-05-14 16:18:17 +0000
commit17f4b85725e3efd6efd83d44ed2439b9b706409c (patch)
tree260476c035d0ee8aac00eba8f3b54d8c797bd1fe
parent6608c7b00715ce4a68e0c2aa336bc90a3c59e262 (diff)
parent8051967ac143c7e07ee636315cee8b56874e22c3 (diff)
downloaddng_sdk-17f4b85725e3efd6efd83d44ed2439b9b706409c.tar.gz
Targeted minimal fix for security issue in CVE-2020-9589. am: 8051967ac1
Change-Id: Ifa5bebb1e0a14dfed16958a0710a7232db9755ff
-rw-r--r--source/dng_lossless_jpeg.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/dng_lossless_jpeg.cpp b/source/dng_lossless_jpeg.cpp
index e3b0576..9d0d01a 100644
--- a/source/dng_lossless_jpeg.cpp
+++ b/source/dng_lossless_jpeg.cpp
@@ -2277,7 +2277,7 @@ void dng_lossless_decoder::DecodeImage ()
#if qSupportHasselblad_3FR
- if (info.Ss == 8)
+ if (info.Ss == 8 && (numCOL & 1) == 0)
{
fHasselblad3FR = true;
@@ -2412,7 +2412,7 @@ void dng_lossless_decoder::DecodeImage ()
// For the rest of the column on this row, predictor
// calculations are based on PSV.
- if (compsInScan == 2 && info.Ss == 1)
+ if (compsInScan == 2 && info.Ss == 1 && numCOL > 1)
{
// This is the combination used by both the Canon and Kodak raw formats.