mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-28 20:53:54 +02:00
avformat/flvdec: Check for avio_read() failure in amf_get_string()
Suggested-by: Anton Khirnov <anton@khirnov.net>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit cb31667611
)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
6a3f5c9d76
commit
2f0ae56460
@ -359,13 +359,18 @@ static int flv_set_video_codec(AVFormatContext *s, AVStream *vstream,
|
||||
|
||||
static int amf_get_string(AVIOContext *ioc, char *buffer, int buffsize)
|
||||
{
|
||||
int ret;
|
||||
int length = avio_rb16(ioc);
|
||||
if (length >= buffsize) {
|
||||
avio_skip(ioc, length);
|
||||
return -1;
|
||||
}
|
||||
|
||||
avio_read(ioc, buffer, length);
|
||||
ret = avio_read(ioc, buffer, length);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
if (ret < length)
|
||||
return AVERROR_INVALIDDATA;
|
||||
|
||||
buffer[length] = '\0';
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user