From 28ffd4bd9255ee7ebcfcf580a350e8e8481b0fa6 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 7 Apr 2020 09:01:00 +0200 Subject: update to version 6.9.11 patch level 6 --- e9e105ccbea4e2e9acc2e7c27fe065a90e919d5d.patch | 58 -------------------------- 1 file changed, 58 deletions(-) delete mode 100644 e9e105ccbea4e2e9acc2e7c27fe065a90e919d5d.patch (limited to 'e9e105ccbea4e2e9acc2e7c27fe065a90e919d5d.patch') diff --git a/e9e105ccbea4e2e9acc2e7c27fe065a90e919d5d.patch b/e9e105ccbea4e2e9acc2e7c27fe065a90e919d5d.patch deleted file mode 100644 index 1658552..0000000 --- a/e9e105ccbea4e2e9acc2e7c27fe065a90e919d5d.patch +++ /dev/null @@ -1,58 +0,0 @@ -From e9e105ccbea4e2e9acc2e7c27fe065a90e919d5d Mon Sep 17 00:00:00 2001 -From: Cristy -Date: Mon, 6 Apr 2020 10:54:53 -0400 -Subject: [PATCH] https://github.com/ImageMagick/ImageMagick6/issues/80 - ---- - ChangeLog | 7 +++++++ - coders/ept.c | 21 +++++++-------------- - 2 files changed, 14 insertions(+), 14 deletions(-) - -diff --git a/coders/ept.c b/coders/ept.c -index d4cd72045..71f8c19c6 100644 ---- a/coders/ept.c -+++ b/coders/ept.c -@@ -165,8 +165,7 @@ static Image *ReadEPTImage(const ImageInfo *image_info,ExceptionInfo *exception) - ept_info; - - Image -- *image, -- *tiff_image; -+ *image; - - ImageInfo - *read_info; -@@ -255,27 +254,21 @@ static Image *ReadEPTImage(const ImageInfo *image_info,ExceptionInfo *exception) - (void) CloseBlob(image); - image=DestroyImage(image); - read_info=CloneImageInfo(image_info); -- read_info->number_scenes=1; -- read_info->scene=0; - (void) CopyMagickString(read_info->magick,"EPS",MagickPathExtent); - image=BlobToImage(read_info,postscript_data,ept_info.postscript_length, - exception); -+ if (image == (Image *) NULL) -+ { -+ (void) CopyMagickString(read_info->magick,"TIFF",MagickPathExtent); -+ image=BlobToImage(read_info,tiff_data,ept_info.tiff_length,exception); -+ } -+ read_info=DestroyImageInfo(read_info); - if (image != (Image *) NULL) - { - (void) CopyMagickString(image->filename,image_info->filename, - MagickPathExtent); - (void) CopyMagickString(image->magick,"EPT",MagickPathExtent); - } -- (void) CopyMagickString(read_info->magick,"TIFF",MagickPathExtent); -- tiff_image=BlobToImage(read_info,tiff_data,ept_info.tiff_length,exception); -- if (tiff_image != (Image *) NULL) -- { -- if (image == (Image *) NULL) -- image=tiff_image; -- else -- AppendImageToList(&image,tiff_image); -- } -- read_info=DestroyImageInfo(read_info); - ept_info.tiff=(unsigned char *) RelinquishMagickMemory(ept_info.tiff); - ept_info.postscript=(unsigned char *) RelinquishMagickMemory( - ept_info.postscript); -- cgit