1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-15 01:29:33 +00:00

[downloader/hls] Properly close stream

This commit is contained in:
Sergey M․ 2015-09-10 02:41:30 +06:00
parent d85187eb74
commit 133a2b4ac2

View file

@ -92,6 +92,7 @@ class NativeHlsFD(FragmentFD):
return False
down, frag_sanitized = sanitize_open(frag_filename, 'rb')
ctx['dest_stream'].write(down.read())
down.close()
frags_filenames.append(frag_sanitized)
self._finish_frag_download(ctx)