Bug 1011 - assert failed. file=../src/devices/wifi/dcf-manager.cc

This commit is contained in:
Daniel Lertpratchya
2013-10-10 12:15:40 -04:00
parent 1f74b54e1d
commit 92f915bd79
2 changed files with 2 additions and 1 deletions

View File

@@ -28,6 +28,7 @@ Bugs fixed
----------
- Bug 1722 - beacons transmitted concurrently
- Bug 1616 - WifiPhyStateHelper reports false CCA_BUSY times at State trace source
- Bug 1011 - assert failed. file=../src/devices/wifi/dcf-manager.cc
Release 3.18
=============

View File

@@ -756,7 +756,7 @@ void
DcfManager::NotifyNavStartNow (Time duration)
{
NS_LOG_FUNCTION (this << duration);
NS_ASSERT (m_lastNavStart < Simulator::Now ());
NS_ASSERT (m_lastNavStart <= Simulator::Now ());
MY_DEBUG ("nav start for=" << duration);
UpdateBackoff ();
Time newNavEnd = Simulator::Now () + duration;