mirror of
				https://github.com/f4exb/sdrangel.git
				synced 2025-11-03 21:20:31 -05:00 
			
		
		
		
	Fix writing miscellaneous bytes after EOF
This commit is contained in:
		
							parent
							
								
									7472b754bf
								
							
						
					
					
						commit
						d158c2776e
					
				@ -84,18 +84,15 @@ func copyContent(reader *bufio.Reader, writer *bufio.Writer, blockSize uint) {
 | 
			
		||||
	for {
 | 
			
		||||
		n, err := reader.Read(p)
 | 
			
		||||
 | 
			
		||||
		if err != nil {
 | 
			
		||||
			if err == io.EOF {
 | 
			
		||||
		if err == nil || err == io.EOF {
 | 
			
		||||
			writer.Write(p[0:n])
 | 
			
		||||
			sz += int64(n)
 | 
			
		||||
				break
 | 
			
		||||
			} else {
 | 
			
		||||
				fmt.Println("An error occurred during content copy. Aborting")
 | 
			
		||||
			if err == io.EOF {
 | 
			
		||||
				break
 | 
			
		||||
			}
 | 
			
		||||
		} else {
 | 
			
		||||
			writer.Write(p)
 | 
			
		||||
			sz += int64(blockSize) * 4096
 | 
			
		||||
			fmt.Println("An error occurred during content copy. Aborting")
 | 
			
		||||
			break
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
		fmt.Printf("Wrote %d bytes\r", sz)
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user