Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
SUSE:SLE-12-SP1:GA
ImageMagick.28259
ImageMagick-CVE-2020-27770.patch
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File ImageMagick-CVE-2020-27770.patch of Package ImageMagick.28259
Index: ImageMagick-6.8.8-1/magick/string.c =================================================================== --- ImageMagick-6.8.8-1.orig/magick/string.c 2013-12-29 00:29:23.000000000 +0100 +++ ImageMagick-6.8.8-1/magick/string.c 2020-12-09 18:14:00.579605212 +0100 @@ -2676,7 +2676,7 @@ MagickExport MagickBooleanType Substitut { if (search_extent == 0) search_extent=strlen(search); - if (strncmp(p,search,search_extent) != 0) + if ((*p == *search) && (strncmp(p,search,search_extent) != 0)) continue; /* We found a match. @@ -2704,7 +2704,9 @@ MagickExport MagickBooleanType Substitut (void) CopyMagickMemory(p+replace_extent,p+search_extent, strlen(p+search_extent)+1); (void) CopyMagickMemory(p,replace,replace_extent); - p+=replace_extent-1; + p+=replace_extent; + if (replace_extent != 0) + p--; } return(status); }
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor