зеркало из https://github.com/mozilla/gecko-dev.git
Bug 865919 - Check for still-negative heights when decoding BMPs. - r=joe
This commit is contained in:
Родитель
28f0b51bd9
Коммит
854e567d4c
|
@ -247,6 +247,12 @@ nsBMPDecoder::WriteInternal(const char* aBuffer, uint32_t aCount)
|
|||
return;
|
||||
}
|
||||
|
||||
// Check that our abs height is still valid.
|
||||
if (GetHeight() < 0) {
|
||||
PostDataError();
|
||||
return;
|
||||
}
|
||||
|
||||
uint32_t real_height = GetHeight();
|
||||
|
||||
// Post our size to the superclass
|
||||
|
|
Загрузка…
Ссылка в новой задаче