]> granicus.if.org Git - imagemagick/commitdiff
(no commit message)
authorcristy <urban-warrior@git.imagemagick.org>
Sat, 5 Jun 2010 13:43:49 +0000 (13:43 +0000)
committercristy <urban-warrior@git.imagemagick.org>
Sat, 5 Jun 2010 13:43:49 +0000 (13:43 +0000)
ChangeLog
magick/constitute.c

index 734cfe27a5de94d87131f5239b2f227a30c719ee..61200161d47e0e48435e4a51a582ce7c64ed649d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2010-06-06  6.6.2-3 Cristy  <quetzlzacatenango@image...>
+  * Reset image filename when reading inline images.
+
 2010-05-25  6.6.2-2 Anthony Thyssen <A.Thyssen@griffith...>
   * Replaced '^' morphology kernel rotation with two varients '>' and '<'
   * Hopefully finally settled the kernel defintion of 'Skeleton' to
index 2eb4c415804effc5392b1ba046790c1e2013b1fc..06b9727a5881639b01902f63f7d5a27af3433107 100644 (file)
@@ -909,6 +909,9 @@ MagickExport Image *ReadInlineImage(const ImageInfo *image_info,
   register const char
     *p;
 
+  /*
+    Skip over header (e.g. data:image/gif;base64,).
+  */
   image=NewImageList();
   for (p=content; (*p != ',') && (*p != '\0'); p++) ;
   if (*p == '\0')