We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
ImageMagick
Learn more about funding links in repositories.
Report abuse
1 parent f5910e9 commit 72f5c86Copy full SHA for 72f5c86
coders/png.c
@@ -4477,10 +4477,11 @@ static Image *ReadOneJNGImage(MngInfo *mng_info,
4477
(void) LogMagickEvent(CoderEvent,GetMagickModule(),
4478
" Copying JDAT chunk data to color_blob.");
4479
4480
- (void) WriteBlob(color_image,length,chunk);
4481
-
4482
if (length != 0)
4483
- chunk=(unsigned char *) RelinquishMagickMemory(chunk);
+ {
+ (void) WriteBlob(color_image,length,chunk);
+ chunk=(unsigned char *) RelinquishMagickMemory(chunk);
4484
+ }
4485
4486
continue;
4487
}
0 commit comments