mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 11:45:36 +02:00
replace append with insert to work around assert
This commit is contained in:
parent
b059e98ff5
commit
74ae18e514
1 changed files with 1 additions and 1 deletions
|
@ -512,7 +512,7 @@ bool SendQueue::isInactive(bool sentAPacket) {
|
|||
// add them to the loss list
|
||||
|
||||
// Note that thanks to the DoubleLock we have the _naksLock right now
|
||||
_naks.append(SequenceNumber(_lastACKSequenceNumber) + 1, _currentSequenceNumber);
|
||||
_naks.insert(SequenceNumber(_lastACKSequenceNumber) + 1, _currentSequenceNumber);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue