Browse Source

check if end of list

pull/1752/head
orignal 2 years ago
parent
commit
4c91ae0085
  1. 2
      libi2pd/SSU2.cpp

2
libi2pd/SSU2.cpp

@ -887,7 +887,7 @@ namespace transport @@ -887,7 +887,7 @@ namespace transport
if (it == m_SentPackets.end ()) return; // not found
auto it1 = it;
while (it1 != m_SentPackets.end () && it1->first <= lastPacketNum) it1++;
it1--;
if (it1 != m_SentPackets.end ()) it1--;
m_SentPackets.erase (it, it1);
}

Loading…
Cancel
Save