avformat/http: Use av_freep() avoid leaving stale pointers in memory
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
081913aec5
commit
bcd4447173
@ -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…
x
Reference in New Issue
Block a user