Skip to content
Snippets Groups Projects
Commit eece1bd7 authored by Tom Taylor's avatar Tom Taylor Committed by android-build-merger
Browse files

32764144 Security Vulnerability - heap buffer overflow in libgiftranscode.so...

32764144 Security Vulnerability - heap buffer overflow in libgiftranscode.so in colorMap->Colors[colorIndex] am: 6f763fef am: 9f00add2 am: 71d49134 am: 82fa311e am: cc649e4e am: 657379f5
am: fb324f89

Change-Id: I8e57243cac35d74a28e5af1fd23800d5cb7cb080
parents 0d9e6a3c fb324f89
No related branches found
No related tags found
No related merge requests found
......@@ -384,6 +384,11 @@ bool GifTranscoder::renderImage(GifFileType* gifIn,
for (int y = 0; y < gifIn->Image.Height; y++) {
for (int x = 0; x < gifIn->Image.Width; x++) {
GifByteType colorIndex = *getPixel(rasterBits, gifIn->Image.Width, x, y);
if (colorIndex >= colorMap->ColorCount) {
LOGE("Color Index %d is out of bounds (count=%d)", colorIndex,
colorMap->ColorCount);
return false;
}
// This image may be smaller than the GIF's "logical screen"
int renderX = x + gifIn->Image.Left;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment