mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-03-05 02:45:02 +00:00
les: fix distReq.sentChn double close bug (#17639)
This commit is contained in:
parent
86a03f97d3
commit
d4a28a13ca
1 changed files with 3 additions and 1 deletions
|
|
@ -114,7 +114,9 @@ func (d *requestDistributor) loop() {
|
|||
d.lock.Lock()
|
||||
elem := d.reqQueue.Front()
|
||||
for elem != nil {
|
||||
close(elem.Value.(*distReq).sentChn)
|
||||
req := elem.Value.(*distReq)
|
||||
close(req.sentChn)
|
||||
req.sentChn = nil
|
||||
elem = elem.Next()
|
||||
}
|
||||
d.lock.Unlock()
|
||||
|
|
|
|||
Loading…
Reference in a new issue