From b76dcd07868ecd260b5ed6baa20a1cf1788c10d3 Mon Sep 17 00:00:00 2001 From: Fredrik Hubinette Date: Tue, 7 Feb 2017 12:19:38 -0800 Subject: [PATCH] avformat/id3v2: fix leak in chapter parsing Reviewed-on: https://chromium-review.googlesource.com/439405 Reviewed-by: Dale Curtis Signed-off-by: James Almer --- libavformat/id3v2.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavformat/id3v2.c b/libavformat/id3v2.c index 9969d7a6ca..85a31f77f2 100644 --- a/libavformat/id3v2.c +++ b/libavformat/id3v2.c @@ -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);