mirror of
https://github.com/opencv/opencv.git
synced 2025-06-12 20:42:53 +08:00
Merge pull request #14203 from alalek:fix_ossfuzz_13292
This commit is contained in:
commit
d2854448c2
@ -90,7 +90,7 @@ bool SunRasterDecoder::readHeader()
|
|||||||
m_width = m_strm.getDWord();
|
m_width = m_strm.getDWord();
|
||||||
m_height = m_strm.getDWord();
|
m_height = m_strm.getDWord();
|
||||||
m_bpp = m_strm.getDWord();
|
m_bpp = m_strm.getDWord();
|
||||||
int palSize = 3*(1 << m_bpp);
|
int palSize = (m_bpp > 0 && m_bpp <= 8) ? (3*(1 << m_bpp)) : 0;
|
||||||
|
|
||||||
m_strm.skip( 4 );
|
m_strm.skip( 4 );
|
||||||
m_encoding = (SunRasType)m_strm.getDWord();
|
m_encoding = (SunRasType)m_strm.getDWord();
|
||||||
|
Loading…
Reference in New Issue
Block a user