Module: libav Branch: master Commit: ffdd2e9144f45082ce31f93c20136ade6ed51a54
Author: Clément Bœsch <[email protected]> Committer: Anton Khirnov <[email protected]> Date: Sat May 12 22:31:11 2012 +0200 lavf/id3v2: do not export empty fields. This also avoids a memleak. Signed-off-by: Anton Khirnov <[email protected]> --- libavformat/id3v2.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/libavformat/id3v2.c b/libavformat/id3v2.c index e12e930..da02780 100644 --- a/libavformat/id3v2.c +++ b/libavformat/id3v2.c @@ -293,6 +293,8 @@ static void read_ttag(AVFormatContext *s, AVIOContext *pb, int taglen, const cha } else if (*dst) dict_flags |= AV_DICT_DONT_STRDUP_VAL; + else + av_freep(&dst); if (dst) av_dict_set(&s->metadata, key, dst, dict_flags); _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
