diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-08-02 01:15:37 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-08-02 01:27:03 +0200 |
commit | 76d59f1b34bbee44a98ae8683bcc3780321d8184 (patch) | |
tree | 1199d0716364f12df210a1091437055f0b70a4ca /libavcodec | |
parent | aa0a8ef50e88e89a5c50dbf7ffc448a1a4315759 (diff) | |
download | ffmpeg-76d59f1b34bbee44a98ae8683bcc3780321d8184.tar.gz |
avcodec/dvdsub_parser: Check buf_size before reading 32bit packet size
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
(cherry picked from commit 81c1657a593b1c0f8e46fca00ead1d30ee1cd418)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/dvdsub_parser.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/dvdsub_parser.c b/libavcodec/dvdsub_parser.c index 9a6457e8b4..07ed4f72fc 100644 --- a/libavcodec/dvdsub_parser.c +++ b/libavcodec/dvdsub_parser.c @@ -45,8 +45,9 @@ static int dvdsub_parse(AVCodecParserContext *s, DVDSubParseContext *pc = s->priv_data; if (pc->packet_index == 0) { - if (buf_size < 2) + if (buf_size < 2 || AV_RB16(buf) && buf_size < 6) { return buf_size; + } pc->packet_len = AV_RB16(buf); if (pc->packet_len == 0) /* HD-DVD subpicture packet */ pc->packet_len = AV_RB32(buf+2); |