call dispose from within the destructor

Mathieu Lacage 2007-05-02 09:18:18 +02:00
parent d4814abf5f
commit 6e03b80cd0
1 changed files with 1 additions and 5 deletions

View File

@ -56,11 +56,7 @@ PointToPointNetDevice::~PointToPointNetDevice()
{
NS_DEBUG ("PointToPointNetDevice::~PointToPointNetDevice ()");
if (m_channel)
{
m_channel->Unref ();
m_channel = 0;
}
Dispose ();
delete m_queue;
m_queue = 0;