浏览代码

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

libotony 7 年之前
父节点
当前提交
834057592f
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      p2p/discv5/net.go

+ 1 - 1
p2p/discv5/net.go

@@ -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