aboutsummaryrefslogtreecommitdiffstats
path: root/main/gd/CVE-2021-38115.patch
diff options
context:
space:
mode:
Diffstat (limited to 'main/gd/CVE-2021-38115.patch')
-rw-r--r--main/gd/CVE-2021-38115.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/main/gd/CVE-2021-38115.patch b/main/gd/CVE-2021-38115.patch
deleted file mode 100644
index 94083594e04..00000000000
--- a/main/gd/CVE-2021-38115.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-From 8b111b2b4a4842179be66db68d84dda91a246032 Mon Sep 17 00:00:00 2001
-From: maryam ebrahimzadeh <maryam.ebr@student.sharif.edu>
-Date: Mon, 19 Jul 2021 10:07:13 +0430
-Subject: [PATCH] fix read out-of-bands in reading tga header file
-
----
- src/gd_tga.c | 6 +++++-
- 1 file changed, 5 insertions(+), 1 deletion(-)
-
-diff --git a/src/gd_tga.c b/src/gd_tga.c
-index cae9428da..286febb28 100644
---- a/src/gd_tga.c
-+++ b/src/gd_tga.c
-@@ -191,7 +191,11 @@ int read_header_tga(gdIOCtx *ctx, oTga *tga)
- return -1;
- }
-
-- gdGetBuf(tga->ident, tga->identsize, ctx);
-+
-+ if (gdGetBuf(tga->ident, tga->identsize, ctx) != tga->identsize) {
-+ gd_error("fail to read header ident");
-+ return -1;
-+ }
- }
-
- return 1;