libavformat/http: Fix memory leak in get_cookies.

This commit is contained in:
Richard Shaffer 2018-04-13 16:42:32 -07:00 committed by wm4
parent 9af71b326f
commit 9a8811f478

View File

@ -1103,6 +1103,7 @@ static int get_cookies(HTTPContext *s, char **cookies, const char *path,
snprintf(*cookies, str_size, "%s; %s=%s", tmp, cookie_entry->key, cookie_entry->value); snprintf(*cookies, str_size, "%s; %s=%s", tmp, cookie_entry->key, cookie_entry->value);
av_free(tmp); av_free(tmp);
} }
av_dict_free(&cookie_params);
} }
av_free(set_cookies); av_free(set_cookies);