mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-01-18 21:35:24 +01:00
Merge pull request #7445 from yyforyongyu/fix-heap
discovery: fix heap escape on `cachedMsgs`
This commit is contained in:
commit
9f1daf31c1
@ -1905,9 +1905,10 @@ func (d *AuthenticatedGossiper) isPremature(chanID lnwire.ShortChannelID,
|
||||
pMsg := &processedNetworkMsg{msg: copied}
|
||||
|
||||
// Add the network message.
|
||||
cachedMsgs.msgs = append(cachedMsgs.msgs, pMsg)
|
||||
msgs := cachedMsgs.msgs
|
||||
msgs = append(msgs, pMsg)
|
||||
_, err = d.futureMsgs.Put(msgHeight, &cachedNetworkMsg{
|
||||
msgs: cachedMsgs.msgs,
|
||||
msgs: msgs,
|
||||
})
|
||||
if err != nil {
|
||||
log.Errorf("Adding future message got error: %v", err)
|
||||
|
Loading…
Reference in New Issue
Block a user