blob: 674decccbbe1184415525ce6dd6b157632d4f355 [file] [log] [blame]
Brad Bishop64c979e2019-11-04 13:55:29 -05001From 85138c1ec673e05263ae666baf61f79384daf7e0 Mon Sep 17 00:00:00 2001
2From: Sam Lantinga <slouken@libsdl.org>
3Date: Tue, 30 Jul 2019 11:00:00 -0700
4Subject: [PATCH] Fixed bug 4538 - validate image size when loading BMP files
5
6Upstream-Status: Backport
7[https://hg.libsdl.org/SDL/rev/e7ba650a643a]
8
9CVE: CVE-2019-13616
10
11Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
12---
13 src/video/SDL_bmp.c | 5 +++++
14 1 file changed, 5 insertions(+)
15
16diff --git a/src/video/SDL_bmp.c b/src/video/SDL_bmp.c
17index 0b68918..a06b0c9 100644
18--- a/src/video/SDL_bmp.c
19+++ b/src/video/SDL_bmp.c
20@@ -226,6 +226,11 @@ SDL_LoadBMP_RW(SDL_RWops * src, int freesrc)
21 SDL_RWseek(src, (biSize - headerSize), RW_SEEK_CUR);
22 }
23 }
24+ if (biWidth <= 0 || biHeight == 0) {
25+ SDL_SetError("BMP file with bad dimensions (%dx%d)", biWidth, biHeight);
26+ was_error = SDL_TRUE;
27+ goto done;
28+ }
29 if (biHeight < 0) {
30 topDown = SDL_TRUE;
31 biHeight = -biHeight;
32--
332.7.4
34