diff options
| -rw-r--r-- | meta-oe/recipes-support/gd/gd/0001-fix-read-out-of-bands-in-reading-tga-header-file.patch | 29 | ||||
| -rw-r--r-- | meta-oe/recipes-support/gd/gd_2.3.2.bb | 1 |
2 files changed, 30 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/gd/gd/0001-fix-read-out-of-bands-in-reading-tga-header-file.patch b/meta-oe/recipes-support/gd/gd/0001-fix-read-out-of-bands-in-reading-tga-header-file.patch new file mode 100644 index 0000000000..6152a11843 --- /dev/null +++ b/meta-oe/recipes-support/gd/gd/0001-fix-read-out-of-bands-in-reading-tga-header-file.patch | |||
| @@ -0,0 +1,29 @@ | |||
| 1 | From 8b111b2b4a4842179be66db68d84dda91a246032 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: maryam ebrahimzadeh <maryam.ebr@student.sharif.edu> | ||
| 3 | Date: Mon, 19 Jul 2021 10:07:13 +0430 | ||
| 4 | Subject: [PATCH] fix read out-of-bands in reading tga header file | ||
| 5 | |||
| 6 | --- | ||
| 7 | src/gd_tga.c | 6 +++++- | ||
| 8 | 1 file changed, 5 insertions(+), 1 deletion(-) | ||
| 9 | |||
| 10 | diff --git a/src/gd_tga.c b/src/gd_tga.c | ||
| 11 | index cae9428..286febb 100644 | ||
| 12 | --- a/src/gd_tga.c | ||
| 13 | +++ b/src/gd_tga.c | ||
| 14 | @@ -191,7 +191,11 @@ int read_header_tga(gdIOCtx *ctx, oTga *tga) | ||
| 15 | return -1; | ||
| 16 | } | ||
| 17 | |||
| 18 | - gdGetBuf(tga->ident, tga->identsize, ctx); | ||
| 19 | + | ||
| 20 | + if (gdGetBuf(tga->ident, tga->identsize, ctx) != tga->identsize) { | ||
| 21 | + gd_error("fail to read header ident"); | ||
| 22 | + return -1; | ||
| 23 | + } | ||
| 24 | } | ||
| 25 | |||
| 26 | return 1; | ||
| 27 | -- | ||
| 28 | 2.25.1 | ||
| 29 | |||
diff --git a/meta-oe/recipes-support/gd/gd_2.3.2.bb b/meta-oe/recipes-support/gd/gd_2.3.2.bb index c9ed029f96..32484ce791 100644 --- a/meta-oe/recipes-support/gd/gd_2.3.2.bb +++ b/meta-oe/recipes-support/gd/gd_2.3.2.bb | |||
| @@ -15,6 +15,7 @@ DEPENDS = "freetype libpng jpeg zlib tiff" | |||
| 15 | 15 | ||
| 16 | SRC_URI = "git://github.com/libgd/libgd.git;branch=master \ | 16 | SRC_URI = "git://github.com/libgd/libgd.git;branch=master \ |
| 17 | file://0001-replace-uint32-with-uint32_t-and-uint16-with-uint16_.patch \ | 17 | file://0001-replace-uint32-with-uint32_t-and-uint16-with-uint16_.patch \ |
| 18 | file://0001-fix-read-out-of-bands-in-reading-tga-header-file.patch \ | ||
| 18 | " | 19 | " |
| 19 | 20 | ||
| 20 | SRCREV = "2e40f55bfb460fc9d8cbcd290a0c9eb908d5af7e" | 21 | SRCREV = "2e40f55bfb460fc9d8cbcd290a0c9eb908d5af7e" |
