mirror of https://git.ffmpeg.org/ffmpeg.git
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:
parent
60b385a5bf
commit
670d3189e9
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue