Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
SUSE:SLE-12-SP1:GA
ImageMagick.30355
ImageMagick-CVE-2018-5685.patch
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File ImageMagick-CVE-2018-5685.patch of Package ImageMagick.30355
Index: ImageMagick-6.8.8-1/coders/bmp.c =================================================================== --- ImageMagick-6.8.8-1.orig/coders/bmp.c 2018-01-24 12:59:26.043597445 +0100 +++ ImageMagick-6.8.8-1/coders/bmp.c 2018-01-24 12:59:45.123926788 +0100 @@ -1006,31 +1006,63 @@ static Image *ReadBMPImage(const ImageIn (void) ResetMagickMemory(&quantum_bits,0,sizeof(quantum_bits)); if (bmp_info.red_mask != 0) while (((bmp_info.red_mask << shift.red) & 0x80000000UL) == 0) + { shift.red++; + if (shift.red > 32U) + break; + } if (bmp_info.green_mask != 0) while (((bmp_info.green_mask << shift.green) & 0x80000000UL) == 0) + { shift.green++; + if (shift.green > 32U) + break; + } if (bmp_info.blue_mask != 0) while (((bmp_info.blue_mask << shift.blue) & 0x80000000UL) == 0) + { shift.blue++; + if (shift.blue > 32U) + break; + } if (bmp_info.alpha_mask != 0) while (((bmp_info.alpha_mask << shift.opacity) & 0x80000000UL) == 0) + { shift.opacity++; + if (shift.opacity > 32U) + break; + } sample=shift.red; while (((bmp_info.red_mask << sample) & 0x80000000UL) != 0) + { sample++; + if (sample > 32U) + break; + } quantum_bits.red=ClampToQuantum((MagickRealType) sample-shift.red); sample=shift.green; while (((bmp_info.green_mask << sample) & 0x80000000UL) != 0) + { sample++; + if (sample > 32U) + break; + } quantum_bits.green=ClampToQuantum((MagickRealType) sample-shift.green); sample=shift.blue; while (((bmp_info.blue_mask << sample) & 0x80000000UL) != 0) + { sample++; + if (sample > 32U) + break; + } quantum_bits.blue=ClampToQuantum((MagickRealType) sample-shift.blue); sample=shift.opacity; while (((bmp_info.alpha_mask << sample) & 0x80000000UL) != 0) + { sample++; + if (sample > 32U) + break; + } quantum_bits.opacity=ClampToQuantum((MagickRealType) sample-shift.opacity); } switch (bmp_info.bits_per_pixel)
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