From 3f56224a9a83719b5bb42ad0bb9a6267b131e50b Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Wed, 24 Dec 2014 13:01:10 +0100 Subject: avformat/rtpdec_mpeg4: Use av_freep() to avoid leaving stale pointers in memory Signed-off-by: Michael Niedermayer --- libavformat/rtpdec_mpeg4.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libavformat/rtpdec_mpeg4.c') diff --git a/libavformat/rtpdec_mpeg4.c b/libavformat/rtpdec_mpeg4.c index 6ab3e64789..9655d302a3 100644 --- a/libavformat/rtpdec_mpeg4.c +++ b/libavformat/rtpdec_mpeg4.c @@ -95,9 +95,9 @@ static PayloadContext *new_context(void) static void free_context(PayloadContext *data) { - av_free(data->au_headers); - av_free(data->mode); - av_free(data); + av_freep(&data->au_headers); + av_freep(&data->mode); + av_freep(&data); } static int parse_fmtp_config(AVCodecContext *codec, char *value) -- cgit v1.2.3