avformat/http: Use av_freep() avoid leaving stale pointers in memory

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
pull/101/head
Michael Niedermayer 10 years ago
parent 081913aec5
commit bcd4447173
  1. 6
      libavformat/http.c

@ -643,9 +643,9 @@ static int get_cookies(HTTPContext *s, char **cookies, const char *path,
} }
done_cookie: done_cookie:
av_free(cdomain); av_freep(&cdomain);
av_free(cpath); av_freep(&cpath);
av_free(cvalue); av_freep(&cvalue);
if (ret < 0) { if (ret < 0) {
if (*cookies) av_freep(cookies); if (*cookies) av_freep(cookies);
av_free(cset_cookies); av_free(cset_cookies);

Loading…
Cancel
Save