From: dirk Date: Thu, 28 Aug 2014 18:58:23 +0000 (+0000) Subject: Fix for 64 bit build. X-Git-Tag: 7.0.1-0~2059 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=68bd1b54749d1ab226f2d66a36ed1dbf20bd18cc;p=imagemagick Fix for 64 bit build. --- diff --git a/MagickCore/property.c b/MagickCore/property.c index a74a22de8..ebcb83cde 100644 --- a/MagickCore/property.c +++ b/MagickCore/property.c @@ -1996,12 +1996,12 @@ static char *TraceSVGClippath(const unsigned char *blob,size_t length, */ for (i=0; i < 3; i++) { - size_t + unsigned int xx, yy; - yy=(size_t) ((int) ReadPropertyMSBLong(&blob,&length)); - xx=(size_t) ((int) ReadPropertyMSBLong(&blob,&length)); + yy=(unsigned int) ((int) ReadPropertyMSBLong(&blob,&length)); + xx=(unsigned int) ((int) ReadPropertyMSBLong(&blob,&length)); x=(ssize_t) xx; if (xx > 2147483647) x=(ssize_t) xx-4294967295U-1;