[downloader/hls] Properly close stream

This commit is contained in:
Sergey M․ 2015-09-10 02:41:30 +06:00
parent d85187eb74
commit 133a2b4ac2
1 changed files with 1 additions and 0 deletions

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)