From 3652f431c2d8b9c10bf20b70f284d300d12e814a From: Andrew Murray 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 --- 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