Merge pull request #122093 from npolshakova/small-fix-getchainsfromtable
Fix error check in GetChainsFromTables
This commit is contained in:
		@@ -40,7 +40,7 @@ func GetChainsFromTable(save []byte) map[Chain]struct{} {
 | 
				
			|||||||
		start := i + 2
 | 
							start := i + 2
 | 
				
			||||||
		save = save[start:]
 | 
							save = save[start:]
 | 
				
			||||||
		end := bytes.Index(save, []byte(" "))
 | 
							end := bytes.Index(save, []byte(" "))
 | 
				
			||||||
		if i == -1 {
 | 
							if end == -1 {
 | 
				
			||||||
			// shouldn't happen, but...
 | 
								// shouldn't happen, but...
 | 
				
			||||||
			break
 | 
								break
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user