Skip to content

Commit

Permalink
FFmpeg: Cherry-pick c94305a to fix #15085
Browse files Browse the repository at this point in the history
  • Loading branch information
fritsch committed Apr 20, 2014
1 parent dfdeb9a commit b9cdb15
Showing 1 changed file with 29 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
From c94305ae23318c8956a30485cd5642829f4f16a9 Mon Sep 17 00:00:00 2001
From: Peter Ross <pross@xvid.org>
Date: Sat, 19 Apr 2014 12:12:00 +1000
Subject: [PATCH] ff_id3v2_free_extra_meta: set the pointer pointing to
extra_meta to NULL

Fixes ticket #3530.

Signed-off-by: Peter Ross <pross@xvid.org>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
---
libavformat/id3v2.c | 2 ++
1 file changed, 2 insertions(+)

diff --git a/libavformat/id3v2.c b/libavformat/id3v2.c
index 8a8989b..15b58d7 100644
--- a/libavformat/id3v2.c
+++ b/libavformat/id3v2.c
@@ -937,6 +937,8 @@ void ff_id3v2_free_extra_meta(ID3v2ExtraMeta **extra_meta)
av_freep(&current);
current = next;
}
+
+ *extra_meta = NULL;
}

int ff_id3v2_parse_apic(AVFormatContext *s, ID3v2ExtraMeta **extra_meta)
--
1.7.10.4

0 comments on commit b9cdb15

Please sign in to comment.