|
|
33e48a |
From 6bb9d7ea3fdc22a8a03b989e430d0f4953e59f03 Mon Sep 17 00:00:00 2001
|
|
|
33e48a |
From: DRC <information@libjpeg-turbo.org>
|
|
|
33e48a |
Date: Thu, 14 Jan 2021 18:35:15 -0600
|
|
|
33e48a |
Subject: [PATCH] cjpeg: Fix FPE when compressing 0-width GIF
|
|
|
33e48a |
|
|
|
33e48a |
---
|
|
|
33e48a |
cderror.h | 5 ++++-
|
|
|
33e48a |
rdgif.c | 8 +++++++-
|
|
|
33e48a |
2 files changed, 11 insertions(+), 2 deletions(-)
|
|
|
33e48a |
|
|
|
33e48a |
diff --git a/cderror.h b/cderror.h
|
|
|
33e48a |
index a386b69..2844346 100644
|
|
|
33e48a |
--- a/cderror.h
|
|
|
33e48a |
+++ b/cderror.h
|
|
|
33e48a |
@@ -1,9 +1,11 @@
|
|
|
33e48a |
/*
|
|
|
33e48a |
* cderror.h
|
|
|
33e48a |
*
|
|
|
33e48a |
+ * This file was part of the Independent JPEG Group's software:
|
|
|
33e48a |
* Copyright (C) 1994-1997, Thomas G. Lane.
|
|
|
33e48a |
* Modified 2009-2017 by Guido Vollbeding.
|
|
|
33e48a |
- * This file is part of the Independent JPEG Group's software.
|
|
|
33e48a |
+ * libjpeg-turbo Modifications:
|
|
|
33e48a |
+ * Copyright (C) 2021, D. R. Commander.
|
|
|
33e48a |
* For conditions of distribution and use, see the accompanying README.ijg
|
|
|
33e48a |
* file.
|
|
|
33e48a |
*
|
|
|
33e48a |
@@ -60,6 +62,7 @@ JMESSAGE(JTRC_BMP_OS2_MAPPED, "%ux%u 8-bit colormapped OS2 BMP image")
|
|
|
33e48a |
JMESSAGE(JERR_GIF_BUG, "GIF output got confused")
|
|
|
33e48a |
JMESSAGE(JERR_GIF_CODESIZE, "Bogus GIF codesize %d")
|
|
|
33e48a |
JMESSAGE(JERR_GIF_COLORSPACE, "GIF output must be grayscale or RGB")
|
|
|
33e48a |
+JMESSAGE(JERR_GIF_EMPTY, "Empty GIF image")
|
|
|
33e48a |
JMESSAGE(JERR_GIF_IMAGENOTFOUND, "Too few images in GIF file")
|
|
|
33e48a |
JMESSAGE(JERR_GIF_NOT, "Not a GIF file")
|
|
|
33e48a |
JMESSAGE(JTRC_GIF, "%ux%ux%d GIF image")
|
|
|
33e48a |
diff --git a/rdgif.c b/rdgif.c
|
|
|
33e48a |
index e1ea56c..8a379fe 100644
|
|
|
33e48a |
--- a/rdgif.c
|
|
|
33e48a |
+++ b/rdgif.c
|
|
|
33e48a |
@@ -1,9 +1,11 @@
|
|
|
33e48a |
/*
|
|
|
33e48a |
* rdgif.c
|
|
|
33e48a |
*
|
|
|
33e48a |
+ * This file was part of the Independent JPEG Group's software:
|
|
|
33e48a |
* Copyright (C) 1991-1997, Thomas G. Lane.
|
|
|
33e48a |
* Modified 2019 by Guido Vollbeding.
|
|
|
33e48a |
- * This file is part of the Independent JPEG Group's software.
|
|
|
33e48a |
+ * libjpeg-turbo Modifications:
|
|
|
33e48a |
+ * Copyright (C) 2021, D. R. Commander.
|
|
|
33e48a |
* For conditions of distribution and use, see the accompanying README.ijg
|
|
|
33e48a |
* file.
|
|
|
33e48a |
*
|
|
|
33e48a |
@@ -404,6 +406,8 @@ start_input_gif(j_compress_ptr cinfo, cjpeg_source_ptr sinfo)
|
|
|
33e48a |
ERREXIT(cinfo, JERR_INPUT_EOF);
|
|
|
33e48a |
width = LM_to_uint(hdrbuf, 0);
|
|
|
33e48a |
height = LM_to_uint(hdrbuf, 2);
|
|
|
33e48a |
+ if (width == 0 || height == 0)
|
|
|
33e48a |
+ ERREXIT(cinfo, JERR_GIF_EMPTY);
|
|
|
33e48a |
/* we ignore the color resolution, sort flag, and background color index */
|
|
|
33e48a |
aspectRatio = UCH(hdrbuf[6]);
|
|
|
33e48a |
if (aspectRatio != 0 && aspectRatio != 49)
|
|
|
33e48a |
@@ -446,6 +450,8 @@ start_input_gif(j_compress_ptr cinfo, cjpeg_source_ptr sinfo)
|
|
|
33e48a |
/* we ignore top/left position info, also sort flag */
|
|
|
33e48a |
width = LM_to_uint(hdrbuf, 4);
|
|
|
33e48a |
height = LM_to_uint(hdrbuf, 6);
|
|
|
33e48a |
+ if (width == 0 || height == 0)
|
|
|
33e48a |
+ ERREXIT(cinfo, JERR_GIF_EMPTY);
|
|
|
33e48a |
source->is_interlaced = (BitSet(hdrbuf[8], INTERLACE) != 0);
|
|
|
33e48a |
|
|
|
33e48a |
/* Read local colormap if header indicates it is present */
|
|
|
33e48a |
--
|
|
|
33e48a |
2.26.3
|
|
|
33e48a |
|