mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-08 13:22:53 +02:00
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:
|
||||
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);
|
||||
|
Loading…
Reference in New Issue
Block a user