Commit 9d729446 authored by Swetank Srivastava's avatar Swetank Srivastava

memory leak fix

parent e71f0461
...@@ -687,9 +687,6 @@ The first/ leftmost bit corresponds to the first SS/PBCH block index in the grou ...@@ -687,9 +687,6 @@ The first/ leftmost bit corresponds to the first SS/PBCH block index in the grou
if (ServCellCom->ssb_PositionsInBurst.groupPresence != NULL) if (ServCellCom->ssb_PositionsInBurst.groupPresence != NULL)
RRM_FREE(ServCellCom->ssb_PositionsInBurst.groupPresence); RRM_FREE(ServCellCom->ssb_PositionsInBurst.groupPresence);
if (ServCellCom->ssb_PositionsInBurst.inOneGroup.buf != NULL)
RRM_FREE(ServCellCom->ssb_PositionsInBurst.inOneGroup.buf);
if (ZoneEight != NULL) if (ZoneEight != NULL)
RRM_FREE(ZoneEight); RRM_FREE(ZoneEight);
...@@ -701,7 +698,6 @@ The first/ leftmost bit corresponds to the first SS/PBCH block index in the grou ...@@ -701,7 +698,6 @@ The first/ leftmost bit corresponds to the first SS/PBCH block index in the grou
if (sib1->servingCellConfigCommon) if (sib1->servingCellConfigCommon)
RRM_FREE(sib1->servingCellConfigCommon); RRM_FREE(sib1->servingCellConfigCommon);
if (nr_plmn_info->trackingAreaCode->buf != NULL) if (nr_plmn_info->trackingAreaCode->buf != NULL)
RRM_FREE(nr_plmn_info->trackingAreaCode->buf); RRM_FREE(nr_plmn_info->trackingAreaCode->buf);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment