mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 03:25:11 +01:00 
			
		
		
		
	fixed panic error on user login
This commit is contained in:
		
							parent
							
								
									c5c5aac7a5
								
							
						
					
					
						commit
						e1a4f99eaa
					
				| @ -5,6 +5,7 @@ import ( | ||||
| 	"fmt" | ||||
| 	"io" | ||||
| 	"reflect" | ||||
| 	"errors" | ||||
| ) | ||||
| 
 | ||||
| type Packet struct { | ||||
| @ -177,6 +178,10 @@ func readBytes(reader io.Reader, buf []byte) error { | ||||
| 	idx := 0 | ||||
| 	buflen := len(buf) | ||||
| 
 | ||||
| 	if reader == nil { | ||||
| 		return errors.New("reader was nil, aborting") | ||||
| 	} | ||||
| 	 | ||||
| 	for idx < buflen { | ||||
| 		n, err := reader.Read(buf[idx:]) | ||||
| 		if err != nil { | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user