]> granicus.if.org Git - imagemagick/commitdiff
(no commit message)
authorcristy <urban-warrior@git.imagemagick.org>
Fri, 18 Feb 2011 02:55:20 +0000 (02:55 +0000)
committercristy <urban-warrior@git.imagemagick.org>
Fri, 18 Feb 2011 02:55:20 +0000 (02:55 +0000)
ChangeLog
magick/blob.c

index 50b00f83747925571b86e2c90da33fc866035bc0..fe844811d71f55bf3968df23b8f92b2f9416090d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -9,6 +9,7 @@
 2011-02-14  6.6.7-8 Cristy  <quetzlzacatenango@image...>
   * Use implicit image format when explicit format is bogus (e.g.
     02.13.11-18:43:58.png now writes as PNG).
+  * Fix problem with 4GB file seeks on a 32-bit OS.
 
 2011-02-13  6.6.7-7 Anthony Thyssen <A.Thyssen@griffith...>
   * Fixed Variable blur to handle small (< 1.0 sigma) blurs generated
index 6114cc208f9fefe4ba38ca9f52809c2223183d8b..a3adbc26cf3ca237f5143a5c60bc6dd75af96406 100644 (file)
@@ -3517,7 +3517,7 @@ MagickExport MagickOffsetType SeekBlob(Image *image,
       break;
     case FileStream:
     {
-      if (fseek(image->blob->file,(long) offset,whence) < 0)
+      if (fseek(image->blob->file,offset,whence) < 0)
         return(-1);
       image->blob->offset=TellBlob(image);
       break;