Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Holdsworth <joel@airwebreathe.org.uk>2015-12-27 15:21:44 +0300
committerMichael Niedermayer <michael@niedermayer.cc>2015-12-27 23:44:15 +0300
commit9cdccd404be9b239c9cca2be88dd63657b83d6e5 (patch)
tree9e98ef0b40b52ba065204c63118bcdaf2cc958bf /libavformat
parentb4eb1f29ebddd60c41a2eb39f5af701e38e0d3fd (diff)
avformat/hls: Remember to free HLSContext::headers
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/hls.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/hls.c b/libavformat/hls.c
index 2d4ee137ad..82d5410691 100644
--- a/libavformat/hls.c
+++ b/libavformat/hls.c
@@ -256,6 +256,7 @@ static void free_playlist_list(HLSContext *c)
av_freep(&c->playlists);
av_freep(&c->cookies);
av_freep(&c->user_agent);
+ av_freep(&c->headers);
c->n_playlists = 0;
}