mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
avsdemux: check for corrupted data
Signed-off-by: Janne Grunau <janne-libav@jannau.net>
This commit is contained in:
parent
7bb1807c2d
commit
76c6971a64
@ -163,6 +163,8 @@ static int avs_read_packet(AVFormatContext * s, AVPacket * pkt)
|
|||||||
sub_type = avio_r8(s->pb);
|
sub_type = avio_r8(s->pb);
|
||||||
type = avio_r8(s->pb);
|
type = avio_r8(s->pb);
|
||||||
size = avio_rl16(s->pb);
|
size = avio_rl16(s->pb);
|
||||||
|
if (size < 4)
|
||||||
|
return AVERROR_INVALIDDATA;
|
||||||
avs->remaining_frame_size -= size;
|
avs->remaining_frame_size -= size;
|
||||||
|
|
||||||
switch (type) {
|
switch (type) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user