[downloader/http] Fix access to not yet opened stream in retry
This commit is contained in:
		
							parent
							
								
									b55715934b
								
							
						
					
					
						commit
						0837992a22
					
				
					 1 changed files with 4 additions and 3 deletions
				
			
		| 
						 | 
					@ -223,9 +223,10 @@ class HttpFD(FileDownloader):
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            def retry(e):
 | 
					            def retry(e):
 | 
				
			||||||
                to_stdout = ctx.tmpfilename == '-'
 | 
					                to_stdout = ctx.tmpfilename == '-'
 | 
				
			||||||
                if not to_stdout:
 | 
					                if ctx.stream is not None:
 | 
				
			||||||
                    ctx.stream.close()
 | 
					                    if not to_stdout:
 | 
				
			||||||
                ctx.stream = None
 | 
					                        ctx.stream.close()
 | 
				
			||||||
 | 
					                    ctx.stream = None
 | 
				
			||||||
                ctx.resume_len = byte_counter if to_stdout else os.path.getsize(encodeFilename(ctx.tmpfilename))
 | 
					                ctx.resume_len = byte_counter if to_stdout else os.path.getsize(encodeFilename(ctx.tmpfilename))
 | 
				
			||||||
                raise RetryDownload(e)
 | 
					                raise RetryDownload(e)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue