From bcd4447173c83bfeae69aa53e2e3a25c449d2a54 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sat, 20 Dec 2014 16:53:37 +0100 Subject: [PATCH] avformat/http: Use av_freep() avoid leaving stale pointers in memory Signed-off-by: Michael Niedermayer --- libavformat/http.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libavformat/http.c b/libavformat/http.c index d9de05c968..b9e18701fb 100644 --- a/libavformat/http.c +++ b/libavformat/http.c @@ -643,9 +643,9 @@ static int get_cookies(HTTPContext *s, char **cookies, const char *path, } done_cookie: - av_free(cdomain); - av_free(cpath); - av_free(cvalue); + av_freep(&cdomain); + av_freep(&cpath); + av_freep(&cvalue); if (ret < 0) { if (*cookies) av_freep(cookies); av_free(cset_cookies);