Skip to content
Permalink
Browse files Browse the repository at this point in the history
https://github.com/ImageMagick/ImageMagick/issues/1641
  • Loading branch information
Cristy committed Jul 18, 2019
1 parent 8de7d66 commit 39f226a
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 6 deletions.
15 changes: 11 additions & 4 deletions ChangeLog
@@ -1,16 +1,23 @@
2019-07-18 7.0.8-55 Cristy <quetzlzacatenango@image...>
* Release ImageMagick version 7.0.8-55, GIT revision 15...

2019-07-18 7.0.8-55 Cristy <quetzlzacatenango@image...>
* Heap-buffer overflow (reference
https://github.com/ImageMagick/ImageMagick/issues/1641

2019-07-16 7.0.8-54 Cristy <quetzlzacatenango@image...>
* Release ImageMagick version 7.0.8-54, GIT revision 15916:e868e22:20190716.

2019-07-08 7.0.8-54 Cristy <quetzlzacatenango@image...>
* resolve division by zero (reference
* resolve division by zero (reference
https://github.com/ImageMagick/ImageMagick/issues/1629).
* introducing MagickLevelImageColors() MagickWand method.
* introducing MagickLevelImageColors() MagickWand method.
* Transient problem with text placement with gravity (reference
https://github.com/ImageMagick/ImageMagick/issues/1633).
* Support TIM2 image format (reference
https://github.com/ImageMagick/ImageMagick/pull/1571).
* For -magnify option, specify an alternative scaling method with -define
magnify:method=method, choose from these methods: eagle2X, eagle3X,
magnify:method=method, choose from these methods: eagle2X, eagle3X,
eagle3XB, epb2X, fish2X, hq2X, scale2X (default), scale3X, xbr2X.

2019-07-05 7.0.8-53 Cristy <quetzlzacatenango@image...>
Expand Down Expand Up @@ -1488,7 +1495,7 @@
2016-04-30 7.0.1-0 Cristy <quetzlzacatenango@image...>
* New version 7.0.1-0, GIT revision 10716:b527bce:20160430.

2016-01-30 7.0.0-0 Fahad-Alsaidi & ShamsaHamed
2016-01-30 7.0.0-0 Fahad-Alsaidi & ShamsaHamed
* Add support for languages that require complex text layout (reference
https://github.com/ImageMagick/ImageMagick/pull/88).

Expand Down
6 changes: 4 additions & 2 deletions coders/jpeg.c
Expand Up @@ -564,6 +564,7 @@ static boolean ReadICCProfile(j_decompress_ptr jpeg_info)
break;
*p++=(unsigned char) c;
}
error_manager->profile=NULL;
if (i != (ssize_t) length)
{
profile=DestroyStringInfo(profile);
Expand All @@ -572,7 +573,6 @@ static boolean ReadICCProfile(j_decompress_ptr jpeg_info)
image->filename);
return(FALSE);
}
error_manager->profile=NULL;
icc_profile=(StringInfo *) GetImageProfile(image,"icc");
if (icc_profile != (StringInfo *) NULL)
{
Expand Down Expand Up @@ -698,7 +698,9 @@ static boolean ReadIPTCProfile(j_decompress_ptr jpeg_info)
image->filename);
return(FALSE);
}
/* The IPTC profile is actually an 8bim */
/*
The IPTC profile is actually an 8bim.
*/
iptc_profile=(StringInfo *) GetImageProfile(image,"8bim");
if (iptc_profile != (StringInfo *) NULL)
{
Expand Down

0 comments on commit 39f226a

Please sign in to comment.