Skip to content
Permalink
Browse files Browse the repository at this point in the history
https://github.com/ImageMagick/ImageMagick/issues/1604
  • Loading branch information
Cristy committed Jun 18, 2019
1 parent d29148f commit ce08a36
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion MagickWand/operation.c
Expand Up @@ -3868,7 +3868,10 @@ WandPrivate MagickBooleanType CLIListOperatorImages(MagickCLI *cli_wand,
reconstruct_image=RemoveFirstImageFromList(&_images);
/* FUTURE - produce Exception, rather than silent fail */
if (reconstruct_image == (Image *) NULL)
break;
{
image=DestroyImage(image);
break;
}
metric=UndefinedErrorMetric;
option=GetImageOption(_image_info,"metric");
if (option != (const char *) NULL)
Expand Down

0 comments on commit ce08a36

Please sign in to comment.