Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
SUSE:SLE-12-SP2:GA
netpbm.4947
netpbm-CVE-2017-2581.patch
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File netpbm-CVE-2017-2581.patch of Package netpbm.4947
Index: netpbm-10.66.3/converter/other/bmptopnm.c =================================================================== --- netpbm-10.66.3.orig/converter/other/bmptopnm.c 2017-06-09 08:09:14.097985963 +0200 +++ netpbm-10.66.3/converter/other/bmptopnm.c 2017-06-09 08:22:29.016324594 +0200 @@ -369,12 +369,19 @@ readWindowsBasic40ByteInfoHeader(FILE * int colorsimportant; /* ColorsImportant value from header */ int colorsused; /* ColorsUsed value from header */ unsigned short planesField, bitCountField; - + int32_t colsField; + headerP->class = C_WIN; - headerP->cols = GetLong(ifP); - if (headerP->cols == 0) - pm_error("Invalid BMP file: says width is zero"); + pm_readlittlelong2(ifP, &colsField); + + if (colsField == 0) + pm_error("Invalid BMP file: says width is zero"); + else if (colsField < 0) + pm_error("Invalid BMP file: says width is negative (%d)", colsField); + else + headerP->cols = (unsigned int)colsField; + { long const cy = GetLong(ifP);
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