From: cristy Date: Sat, 5 Jun 2010 13:43:49 +0000 (+0000) Subject: (no commit message) X-Git-Tag: 7.0.1-0~9285 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d5562a95cceec85cb4afcd69a649c1b2b842e80b;p=imagemagick --- diff --git a/ChangeLog b/ChangeLog index 734cfe27a..61200161d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,6 @@ +2010-06-06 6.6.2-3 Cristy + * Reset image filename when reading inline images. + 2010-05-25 6.6.2-2 Anthony Thyssen * Replaced '^' morphology kernel rotation with two varients '>' and '<' * Hopefully finally settled the kernel defintion of 'Skeleton' to diff --git a/magick/constitute.c b/magick/constitute.c index 2eb4c4158..06b9727a5 100644 --- a/magick/constitute.c +++ b/magick/constitute.c @@ -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')