Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
SUSE:SLE-12:Update
ImageMagick.9832
ImageMagick-CVE-2014-9837.patch
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File ImageMagick-CVE-2014-9837.patch of Package ImageMagick.9832
--- a/coders/pnm.c +++ b/coders/pnm.c @@ -181,12 +181,12 @@ static void PNMComment(Image *image) comment=DestroyString(comment); } -static size_t PNMInteger(Image *image,const unsigned int base) +static unsigned int PNMInteger(Image *image,const unsigned int base) { int c; - size_t + unsigned int value; /* @@ -201,14 +201,18 @@ static size_t PNMInteger(Image *image,const unsigned int base) PNMComment(image); } while (isdigit(c) == MagickFalse); if (base == 2) - return((size_t) (c-(int) '0')); + return((unsigned int) (c-(int) '0')); /* Evaluate number. */ value=0; do { + if (value > (unsigned int) (INT_MAX/10)) + break; value*=10; + if (value > (INT_MAX-c)) + break; value+=c-(int) '0'; c=ReadBlobByte(image); if (c == EOF)
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