avformat/id3v2: fix leak in chapter parsing

Reviewed-on: https://chromium-review.googlesource.com/439405
Reviewed-by: Dale Curtis <dalecurtis@chromium.org>
Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
Fredrik Hubinette 2017-02-07 12:19:38 -08:00 committed by James Almer
parent 60b385a5bf
commit 670d3189e9
1 changed files with 2 additions and 2 deletions

View File

@ -688,9 +688,9 @@ static void read_chapter(AVFormatContext *s, AVIOContext *pb, int len, const cha
}
if (decode_str(s, pb, 0, &dst, &len) < 0)
return;
goto end;
if (len < 16)
return;
goto end;
start = avio_rb32(pb);
end = avio_rb32(pb);