mirror of
				https://github.com/ytdl-org/youtube-dl.git
				synced 2025-10-29 09:26:20 -07:00 
			
		
		
		
	[downloader/http] Fix access to not yet opened stream in retry
This commit is contained in:
		| @@ -223,9 +223,10 @@ class HttpFD(FileDownloader): | ||||
|  | ||||
|             def retry(e): | ||||
|                 to_stdout = ctx.tmpfilename == '-' | ||||
|                 if not to_stdout: | ||||
|                     ctx.stream.close() | ||||
|                 ctx.stream = None | ||||
|                 if ctx.stream is not None: | ||||
|                     if not to_stdout: | ||||
|                         ctx.stream.close() | ||||
|                     ctx.stream = None | ||||
|                 ctx.resume_len = byte_counter if to_stdout else os.path.getsize(encodeFilename(ctx.tmpfilename)) | ||||
|                 raise RetryDownload(e) | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user