Skip to content
Snippets Groups Projects
Commit bcc898dd authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

avcodec/dvdsub_parser: print message if packet is smaller than the packet size field

parent 81c1657a
No related branches found
No related tags found
No related merge requests found
...@@ -46,6 +46,8 @@ static int dvdsub_parse(AVCodecParserContext *s, ...@@ -46,6 +46,8 @@ static int dvdsub_parse(AVCodecParserContext *s,
if (pc->packet_index == 0) { if (pc->packet_index == 0) {
if (buf_size < 2 || AV_RB16(buf) && buf_size < 6) { if (buf_size < 2 || AV_RB16(buf) && buf_size < 6) {
if (buf_size)
av_log(avctx, AV_LOG_DEBUG, "Parser input %d too small\n", buf_size);
return buf_size; return buf_size;
} }
pc->packet_len = AV_RB16(buf); pc->packet_len = AV_RB16(buf);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment