From 15cea3695daf3f6363794594982e3816ddc8d90b Mon Sep 17 00:00:00 2001 From: Janne Grunau Date: Thu, 5 Jan 2012 20:15:53 +0100 Subject: riff: fix invalid av_freep() calls on EOF in ff_read_riff_info --- libavformat/riff.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'libavformat/riff.c') diff --git a/libavformat/riff.c b/libavformat/riff.c index 4caac80..99a8033 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -669,8 +669,7 @@ int ff_read_riff_info(AVFormatContext *s, int64_t size) AV_WL32(key, chunk_code); if (avio_read(pb, value, chunk_size) != chunk_size) { - av_freep(key); - av_freep(value); + av_free(value); av_log(s, AV_LOG_ERROR, "premature end of file while reading INFO tag\n"); return AVERROR_INVALIDDATA; } -- cgit v1.1