[PATCH v2 2/3] windowscodecs: Fix IWICBitmapDecoder::CopyPalette for a not initialized case in the GIF decoder.

Dmitry Timoshkov dmitry at baikal.ru
Sun Apr 26 21:32:38 CDT 2020


Signed-off-by: Dmitry Timoshkov <dmitry at baikal.ru>
---
 dlls/windowscodecs/gifformat.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/dlls/windowscodecs/gifformat.c b/dlls/windowscodecs/gifformat.c
index fc8f4b1c3e..5d5a3a07a2 100644
--- a/dlls/windowscodecs/gifformat.c
+++ b/dlls/windowscodecs/gifformat.c
@@ -1187,6 +1187,9 @@ static HRESULT WINAPI GifDecoder_CopyPalette(IWICBitmapDecoder *iface, IWICPalet
 
     TRACE("(%p,%p)\n", iface, palette);
 
+    if (!This->gif)
+        return WINCODEC_ERR_WRONGSTATE;
+
     cm = This->gif->SColorMap;
     if (cm)
     {
-- 
2.26.2




More information about the wine-devel mailing list