summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/libsdl2/libsdl2/CVE-2021-33657.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-graphics/libsdl2/libsdl2/CVE-2021-33657.patch')
-rw-r--r--meta/recipes-graphics/libsdl2/libsdl2/CVE-2021-33657.patch38
1 files changed, 38 insertions, 0 deletions
diff --git a/meta/recipes-graphics/libsdl2/libsdl2/CVE-2021-33657.patch b/meta/recipes-graphics/libsdl2/libsdl2/CVE-2021-33657.patch
new file mode 100644
index 0000000000..a4ed7ab8e6
--- /dev/null
+++ b/meta/recipes-graphics/libsdl2/libsdl2/CVE-2021-33657.patch
@@ -0,0 +1,38 @@
1From 8c91cf7dba5193f5ce12d06db1336515851c9ee9 Mon Sep 17 00:00:00 2001
2From: Sam Lantinga <slouken@libsdl.org>
3Date: Tue, 30 Nov 2021 12:36:46 -0800
4Subject: [PATCH] Always create a full 256-entry map in case color values are
5 out of range
6
7Fixes https://github.com/libsdl-org/SDL/issues/5042
8
9CVE: CVE-2021-33657
10Upstream-Status: Backport [https://github.com/libsdl-org/SDL/commit/8c91cf7dba5193f5ce12d06db1336515851c9ee9.patch]
11Signed-off-by: Ranjitsinh Rathod <ranjitsinh.rathod@kpit.com>
12
13---
14 src/video/SDL_pixels.c | 4 ++--
15 1 file changed, 2 insertions(+), 2 deletions(-)
16
17diff --git a/src/video/SDL_pixels.c b/src/video/SDL_pixels.c
18index ac04533c5d5..9bb02f771d0 100644
19--- a/src/video/SDL_pixels.c
20+++ b/src/video/SDL_pixels.c
21@@ -947,7 +947,7 @@ Map1to1(SDL_Palette * src, SDL_Palette * dst, int *identical)
22 }
23 *identical = 0;
24 }
25- map = (Uint8 *) SDL_malloc(src->ncolors);
26+ map = (Uint8 *) SDL_calloc(256, sizeof(Uint8));
27 if (map == NULL) {
28 SDL_OutOfMemory();
29 return (NULL);
30@@ -971,7 +971,7 @@ Map1toN(SDL_PixelFormat * src, Uint8 Rmod, Uint8 Gmod, Uint8 Bmod, Uint8 Amod,
31 SDL_Palette *pal = src->palette;
32
33 bpp = ((dst->BytesPerPixel == 3) ? 4 : dst->BytesPerPixel);
34- map = (Uint8 *) SDL_malloc(pal->ncolors * bpp);
35+ map = (Uint8 *) SDL_calloc(256, bpp);
36 if (map == NULL) {
37 SDL_OutOfMemory();
38 return (NULL);