aboutsummaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-pillow/CVE-2023-50447-1.patch
blob: 7de12be5d5820454f807472adef1b415c72aa70c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
From  3652f431c2d8b9c10bf20b70f284d300d12e814a
From: Andrew Murray <radarhere@users.noreply.github.com>
Date:   Sat Oct 28 14:22:39 2023 +1100
Subject: [PATCH] python3-pillow: Simplified code

CVE: CVE-2023-50447

Upstream-Status: Backport [https://github.com/python-pillow/Pillow/commit/3652f431c2d8b9c10bf20b70f284d300d12e814a]

Signed-off-by: Rahul Janani Pandi <RahulJanani.Pandi@windriver.com>
---
 src/PIL/ImageMath.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/PIL/ImageMath.py b/src/PIL/ImageMath.py
index ac7d36b69..71872a3fb 100644
--- a/src/PIL/ImageMath.py
+++ b/src/PIL/ImageMath.py
@@ -239,7 +239,7 @@ def eval(expression, _dict={}, **kw):
     args = ops.copy()
     args.update(_dict)
     args.update(kw)
-    for k, v in list(args.items()):
+    for k, v in args.items():
         if hasattr(v, "im"):
             args[k] = _Operand(v)

--
2.40.0