Commit 9e6c8437 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/dvdsub_parser: Init output buf/size

No testcase
Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 8d21ab4d
......@@ -44,6 +44,9 @@ static int dvdsub_parse(AVCodecParserContext *s,
{
DVDSubParseContext *pc = s->priv_data;
*poutbuf = buf;
*poutbuf_size = buf_size;
if (pc->packet_index == 0) {
if (buf_size < 2 || AV_RB16(buf) && buf_size < 6) {
if (buf_size)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment