mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-04-23 17:36:37 +02:00
check if end of list
This commit is contained in:
parent
43f74d4d5a
commit
4c91ae0085
1 changed files with 1 additions and 1 deletions
|
@ -887,7 +887,7 @@ namespace transport
|
||||||
if (it == m_SentPackets.end ()) return; // not found
|
if (it == m_SentPackets.end ()) return; // not found
|
||||||
auto it1 = it;
|
auto it1 = it;
|
||||||
while (it1 != m_SentPackets.end () && it1->first <= lastPacketNum) it1++;
|
while (it1 != m_SentPackets.end () && it1->first <= lastPacketNum) it1++;
|
||||||
it1--;
|
if (it1 != m_SentPackets.end ()) it1--;
|
||||||
m_SentPackets.erase (it, it1);
|
m_SentPackets.erase (it, it1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue