mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 14:45:14 +00:00 
			
		
		
		
	[downloader/http] Avoid infinite loop when no data is received
Closes #7504
This commit is contained in:
		| @@ -339,15 +339,15 @@ class HttpFD(FileDownloader): | ||||
|                 elif speed: | ||||
|                     ctx.throttle_start = None | ||||
| 
 | ||||
|             if not is_test and ctx.chunk_size and ctx.content_len is not None and byte_counter < ctx.content_len: | ||||
|                 ctx.resume_len = byte_counter | ||||
|                 # ctx.block_size = block_size | ||||
|                 raise NextFragment() | ||||
| 
 | ||||
|             if ctx.stream is None: | ||||
|                 self.to_stderr('\n') | ||||
|                 self.report_error('Did not get any data blocks') | ||||
|                 return False | ||||
| 
 | ||||
|             if not is_test and ctx.chunk_size and ctx.content_len is not None and byte_counter < ctx.content_len: | ||||
|                 ctx.resume_len = byte_counter | ||||
|                 raise NextFragment() | ||||
| 
 | ||||
|             if ctx.tmpfilename != '-': | ||||
|                 ctx.stream.close() | ||||
| 
 | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 pukkandan
					pukkandan