Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 72f5c86

Browse files
author
Dirk Lemstra
committedMay 15, 2017
Fixed incorrect call to WriteBlob reported in #490.
1 parent f5910e9 commit 72f5c86

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed
 

‎coders/png.c

+4-3
Original file line numberDiff line numberDiff line change
@@ -4477,10 +4477,11 @@ static Image *ReadOneJNGImage(MngInfo *mng_info,
44774477
(void) LogMagickEvent(CoderEvent,GetMagickModule(),
44784478
" Copying JDAT chunk data to color_blob.");
44794479

4480-
(void) WriteBlob(color_image,length,chunk);
4481-
44824480
if (length != 0)
4483-
chunk=(unsigned char *) RelinquishMagickMemory(chunk);
4481+
{
4482+
(void) WriteBlob(color_image,length,chunk);
4483+
chunk=(unsigned char *) RelinquishMagickMemory(chunk);
4484+
}
44844485

44854486
continue;
44864487
}

0 commit comments

Comments
 (0)
Please sign in to comment.