xref: /OK3568_Linux_fs/yocto/poky/meta/recipes-multimedia/libtiff/tiff/CVE-2022-48281.patch (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1From 97d65859bc29ee334012e9c73022d8a8e55ed586 Mon Sep 17 00:00:00 2001
2From: Su Laus <sulau@freenet.de>
3Date: Sat, 21 Jan 2023 15:58:10 +0000
4Subject: [PATCH] tiffcrop: Correct simple copy paste error. Fix #488.
5
6
7Upstream-Status: Backport [import from debian http://security.debian.org/debian-security/pool/updates/main/t/tiff/tiff_4.2.0-1+deb11u4.debian.tar.xz]
8CVE: CVE-2022-48281
9Signed-off-by: Chee Yang Lee <chee.yang.lee@intel.com>
10---
11 tools/tiffcrop.c | 2 +-
12 1 file changed, 1 insertion(+), 1 deletion(-)
13
14Index: tiff-4.2.0/tools/tiffcrop.c
15===================================================================
16--- tiff-4.2.0.orig/tools/tiffcrop.c
17+++ tiff-4.2.0/tools/tiffcrop.c
18@@ -7516,7 +7516,7 @@ processCropSelections(struct image_data
19       crop_buff = (unsigned char *)limitMalloc(cropsize + NUM_BUFF_OVERSIZE_BYTES);
20     else
21       {
22-      prev_cropsize = seg_buffs[0].size;
23+      prev_cropsize = seg_buffs[1].size;
24       if (prev_cropsize < cropsize)
25         {
26         next_buff = _TIFFrealloc(crop_buff, cropsize + NUM_BUFF_OVERSIZE_BYTES);
27