diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-05-09 15:34:09 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-05-10 21:40:13 +0200 |
commit | a90f2265fa54ab35ee1b2058c7d6e746fd847359 (patch) | |
tree | ecc0aa6532d0c3979bee004c253c496c9e109b30 /libavformat/hlsenc.c | |
parent | a058d81570e037fd36c427f0bf5237184361ebdc (diff) | |
download | ffmpeg-a90f2265fa54ab35ee1b2058c7d6e746fd847359.tar.gz |
avformat/hlsenc: Don't reset AVIOContext pointer manually a second time
ff_format_io_close() already does it for us.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavformat/hlsenc.c')
-rw-r--r-- | libavformat/hlsenc.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index 7b289c060f..a796c124dd 100644 --- a/libavformat/hlsenc.c +++ b/libavformat/hlsenc.c @@ -2497,7 +2497,6 @@ static int hls_write_packet(AVFormatContext *s, AVPacket *pkt) if ((ret = hls_window(s, 0, vs)) < 0) { av_log(s, AV_LOG_WARNING, "upload playlist failed, will retry with a new http session.\n"); ff_format_io_close(s, &vs->out); - vs->out = NULL; if ((ret = hls_window(s, 0, vs)) < 0) { av_freep(&old_filename); return ret; |