all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
blob a91999186bee4c0e7ee141dbf242af7734d29de2 1272 bytes (raw)
name: gnu/packages/patches/imagemagick-ReadDCMPixels-fix.patch 	 # note: path name is non-authoritative(*)

 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
30
31
32
33
34
35
 
From c8f25953ad1dd38a8b2d92738f0f742ad7e0bce7 Mon Sep 17 00:00:00 2001
From: Cristy <mikayla-grace@urban-warrior.org>
Date: Sun, 21 Mar 2021 21:21:15 -0400
Subject: [PATCH] https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=32322

---
 coders/dcm.c | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/coders/dcm.c b/coders/dcm.c
index 29eed9618..7a68ed6e8 100644
--- a/coders/dcm.c
+++ b/coders/dcm.c
@@ -2984,12 +2984,12 @@ static MagickBooleanType ReadDCMPixels(Image *image,DCMInfo *info,
         }
       else
         {
-          SetPixelRed(q,(Quantum) (((ssize_t) pixel.red) |
-            (((ssize_t) GetPixelRed(q)) << 8)));
-          SetPixelGreen(q,(Quantum) (((ssize_t) pixel.green) |
-            (((ssize_t) GetPixelGreen(q)) << 8)));
-          SetPixelBlue(q,(Quantum) (((ssize_t) pixel.blue) |
-            (((ssize_t) GetPixelBlue(q)) << 8)));
+          SetPixelRed(q,(Quantum) (((size_t) pixel.red) |
+            (((size_t) GetPixelRed(q)) << 8)));
+          SetPixelGreen(q,(Quantum) (((size_t) pixel.green) |
+            (((size_t) GetPixelGreen(q)) << 8)));
+          SetPixelBlue(q,(Quantum) (((size_t) pixel.blue) |
+            (((size_t) GetPixelBlue(q)) << 8)));
         }
       q++;
     }
-- 
2.31.0


debug log:

solving a91999186b ...
found a91999186b in https://git.savannah.gnu.org/cgit/guix.git

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.