Duplicate line in tiff.c breaking read of zip compressed tif

Post any defects you find in the released or beta versions of the ImageMagick software here. Include the ImageMagick version, OS, and any command-line required to reproduce the problem. Got a patch for a bug? Post it here.
Post Reply
Rich1177

Duplicate line in tiff.c breaking read of zip compressed tif

Post by Rich1177 »

line 1100 area
for (y=0; y < (long) image->rows; y++)
{
int
status;

register PixelPacket
*__restrict q;

status=TIFFReadPixels(tiff,bits_per_sample,0,y,(char *) pixels);
status=TIFFReadPixels(tiff,bits_per_sample,0,y,(char *) pixels);

if (status == -1)
break;
q=QueueAuthenticPixels(image,0,y,image->columns,1,exception);
if (q == (PixelPacket *) NULL)
break;
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Re: Duplicate line in tiff.c breaking read of zip compressed tif

Post by magick »

We have a patch to fix the problem in ImageMagick 6.5.2-1 Beta available sometime tomorrow. Thanks for alerting us to this error.
Post Reply