Petr Gajdos
f89cee985d
- added patches fix CVE-2021-3598 [bsc#1187310], Heap buffer overflow in Imf_3_1:CharPtrIO:readChars + openexr-CVE-2021-3598.patch - version update to 2.5.6 * [#1013](https://github.com/AcademySoftwareFoundation/openexr/pull/1013) Fixed regression in Imath::succf() and Imath::predf() when negative values are given OBS-URL: https://build.opensuse.org/package/show/graphics/openexr?expand=0&rev=66
18 lines
726 B
Diff
18 lines
726 B
Diff
diff --git a/OpenEXR/IlmImf/ImfDeepScanLineInputFile.cpp b/OpenEXR/IlmImf/ImfDeepScanLineInputFile.cpp
|
|
index 5f0f43989..ead43c729 100644
|
|
--- a/OpenEXR/IlmImf/ImfDeepScanLineInputFile.cpp
|
|
+++ b/OpenEXR/IlmImf/ImfDeepScanLineInputFile.cpp
|
|
@@ -647,6 +647,11 @@ LineBufferTask::execute ()
|
|
|
|
_lineBuffer->format = Compressor::XDR;
|
|
_lineBuffer->uncompressedData = _lineBuffer->buffer;
|
|
+
|
|
+ if(_lineBuffer->packedDataSize!=maxBytesPerLine)
|
|
+ {
|
|
+ THROW (IEX_NAMESPACE::InputExc, "Incorrect size for uncompressed data. Expected " << maxBytesPerLine << " got " << _lineBuffer->packedDataSize << " bytes");
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|