39 lines
1.2 KiB
Diff
39 lines
1.2 KiB
Diff
From 697957b79a9473f0f643051265885fb048395127 Mon Sep 17 00:00:00 2001
|
|
From: Lumir Balhar <lbalhar@redhat.com>
|
|
Date: Wed, 4 Mar 2020 10:54:54 +0100
|
|
Subject: [PATCH] CVE-2020-5313
|
|
|
|
---
|
|
src/libImaging/FliDecode.c | 8 ++++++--
|
|
1 file changed, 6 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/src/libImaging/FliDecode.c b/src/libImaging/FliDecode.c
|
|
index a99aca8..72ba138 100644
|
|
--- a/src/libImaging/FliDecode.c
|
|
+++ b/src/libImaging/FliDecode.c
|
|
@@ -40,8 +40,7 @@ ImagingFliDecode(Imaging im, ImagingCodecState state, UINT8* buf, int bytes)
|
|
return 0;
|
|
|
|
/* We don't decode anything unless we have a full chunk in the
|
|
- input buffer (on the other hand, the Python part of the driver
|
|
- makes sure this is always the case) */
|
|
+ input buffer */
|
|
|
|
ptr = buf;
|
|
|
|
@@ -52,6 +51,11 @@ ImagingFliDecode(Imaging im, ImagingCodecState state, UINT8* buf, int bytes)
|
|
/* Make sure this is a frame chunk. The Python driver takes
|
|
case of other chunk types. */
|
|
|
|
+ if (bytes < 8) {
|
|
+ state->errcode = IMAGING_CODEC_OVERRUN;
|
|
+ return -1;
|
|
+ }
|
|
+
|
|
if (I16(ptr+4) != 0xF1FA) {
|
|
state->errcode = IMAGING_CODEC_UNKNOWN;
|
|
return -1;
|
|
--
|
|
2.24.1
|
|
|