Skip to content
This repository has been archived by the owner on Feb 20, 2024. It is now read-only.

LteRlcUm: fix deletion of Tx and Rx entities #49

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/stack/rlc/um/LteRlcUm.cc
Original file line number Diff line number Diff line change
Expand Up @@ -213,8 +213,8 @@ void LteRlcUm::deleteQueues(MacNodeId nodeId)
{
if (nodeType == UE || (nodeType == ENODEB && MacCidToNodeId(tit->first) == nodeId))
{
delete tit->second; // Delete Entity
txEntities_.erase(tit++); // Delete Elem
tit->second->deleteModule(); // Delete Entity
tit = txEntities_.erase(tit); // Delete Elem
}
else
{
Expand All @@ -225,8 +225,8 @@ void LteRlcUm::deleteQueues(MacNodeId nodeId)
{
if (nodeType == UE || (nodeType == ENODEB && MacCidToNodeId(rit->first) == nodeId))
{
delete rit->second; // Delete Entity
rxEntities_.erase(rit++); // Delete Elem
rit->second->deleteModule(); // Delete Entity
rit = rxEntities_.erase(rit); // Delete Elem
}
else
{
Expand Down