Typo in quantum-import.c

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
maksqwe
Posts: 5
Joined: 2014-04-04T09:18:50-07:00
Authentication code: 6789

Typo in quantum-import.c

Post by maksqwe »

quantum-import.c 151

PushDoublePixel()

quantum[7]=(*pixels++);
quantum[6]=(*pixels++);
quantum[5]=(*pixels++); // <===
quantum[5]=(*pixels++); // <===
quantum[3]=(*pixels++);
quantum[2]=(*pixels++);
quantum[1]=(*pixels++);
quantum[0]=(*pixels++);
User avatar
dlemstra
Posts: 1570
Joined: 2013-05-04T15:28:54-07:00
Authentication code: 6789
Contact:

Re: Typo in quantum-import.c

Post by dlemstra »

Fixed, thank you for reporting this.
.NET + ImageMagick = Magick.NET https://github.com/dlemstra/Magick.NET, @MagickNET, Donate
Post Reply