mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-23 11:19:55 +00:00
fix infinite loop (suggested change by rjayne at convera dot com)
fixes bug #1160195 Originally committed as revision 4434 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
b7b84107b5
commit
472ea1284e
@ -274,6 +274,9 @@ static int cinepak_decode_strip (CinepakContext *s,
|
||||
while ((data + 4) <= eod) {
|
||||
chunk_id = BE_16 (&data[0]);
|
||||
chunk_size = BE_16 (&data[2]) - 4;
|
||||
if(chunk_size < 0)
|
||||
return -1;
|
||||
|
||||
data += 4;
|
||||
chunk_size = ((data + chunk_size) > eod) ? (eod - data) : chunk_size;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user