wifi: (fixes #2566): Fix BlockAckManager::GetNRetryNeededPackets

This commit is contained in:
Matias Richart
2016-12-21 21:37:36 +01:00
parent 79358fffac
commit e875720cc0
2 changed files with 2 additions and 1 deletions

View File

@@ -52,6 +52,7 @@ Bugs fixed
- Bug 2561 - TCP can not use Connect after a BindToNetDevice
- Bug 2563 - Modify pybindgen version check to >= minimum version required
- Bug 2564 - Simulation crashes when CtsTimeout is triggered for A-MPDU transmissions
- Bug 2566 - BlockAckManager::GetNRetryNeededPackets missing some packets in the queue
Known issues
------------

View File

@@ -534,7 +534,7 @@ BlockAckManager::GetNRetryNeededPackets (Mac48Address recipient, uint8_t tid) co
}
}
//go to next packet
if (it != m_retryPackets.end ())
else
{
it++;
}