Browse Source

libavformat/http: Fix memory leak in get_cookies.

tags/n4.1
Richard Shaffer wm4 7 years ago
parent
commit
9a8811f478
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      libavformat/http.c

+ 1
- 0
libavformat/http.c 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);
av_free(tmp);
}
av_dict_free(&cookie_params);
}

av_free(set_cookies);


Loading…
Cancel
Save