components/imagemagick/patches/16615558.patch
author Mike Sullivan <Mike.Sullivan@Oracle.COM>
Thu, 31 Jul 2014 12:11:52 -0700
branchs11u2-sru
changeset 3244 5fe7a1d88248
parent 2721 3c9bd15584c4
permissions -rw-r--r--
19000542 tcsh represents garbled letters to standard error after installing SRU17.5 18590021 array name doesn't support multi-byte characters in tcsh

The following link explains the issue in detail:
http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=23117

--------------------------------------------------------------------------------
--- ImageMagick-6.8.3/coders/url.c	Mon Dec 10 05:09:00 2012
+++ ImageMagick-6.8.3/coders/url.c	Mon Apr 22 00:07:50 2013
@@ -154,12 +154,9 @@
     file=fdopen(unique_file,"wb");
   if ((unique_file == -1) || (file == (FILE *) NULL))
     {
-      read_info=DestroyImageInfo(read_info);
-      (void) CopyMagickString(image->filename,read_info->filename,
-        MaxTextExtent);
       ThrowFileException(exception,FileOpenError,"UnableToCreateTemporaryFile",
-        image->filename);
-      image=DestroyImageList(image);
+        read_info->filename);
+      read_info=DestroyImageList(read_info);
       return((Image *) NULL);
     }
   (void) CopyMagickString(filename,image_info->magick,MaxTextExtent);