p2p/discv5: fix negative index after uint convert to int (#17274)

This commit is contained in:
libotony 2018-08-09 15:03:42 +08:00 committed by Péter Szilágyi
parent abbb219933
commit 834057592f

View File

@ -1228,7 +1228,7 @@ func (net *Network) checkTopicRegister(data *topicRegister) (*pong, error) {
if rlpHash(data.Topics) != pongpkt.data.(*pong).TopicHash {
return nil, errors.New("topic hash mismatch")
}
if data.Idx < 0 || int(data.Idx) >= len(data.Topics) {
if int(data.Idx) < 0 || int(data.Idx) >= len(data.Topics) {
return nil, errors.New("topic index out of range")
}
return pongpkt.data.(*pong), nil