summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/v1/pa.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/v1/pa.c b/src/v1/pa.c
index 2acc44c..e58645e 100644
--- a/src/v1/pa.c
+++ b/src/v1/pa.c
@@ -1499,6 +1499,7 @@ static void pa_acl_list_elem_free(paAclLinkListElem_t *list)
1499{ 1499{
1500 /* Clear the control bit indicating it is inactive and available for next use */ 1500 /* Clear the control bit indicating it is inactive and available for next use */
1501 list->ctrlBitMap &= ~PA_ACL_LINK_ELEM_ACTIVE_ENTRY; 1501 list->ctrlBitMap &= ~PA_ACL_LINK_ELEM_ACTIVE_ENTRY;
1502 memset(list, 0, sizeof(paAclLinkListElem_t));
1502 return; 1503 return;
1503} 1504}
1504 1505
@@ -1660,9 +1661,13 @@ static paReturn_t pa_remove_entry(paAclLinkListInfo_t *info, paHandleAcl_t aclH
1660 1661
1661 if (prev != NULL) 1662 if (prev != NULL)
1662 prev->next = delNode->next; 1663 prev->next = delNode->next;
1664 else
1665 info->head = next; /* update head to next link as it is head deletion */
1663 1666
1664 if (next != NULL) 1667 if (next != NULL)
1665 next->prev = prev; 1668 next->prev = prev;
1669 else
1670 info->tail = prev; /* update tail to prev link as it is tail deletion */
1666 1671
1667 /* now clear the delNode, free it by making as inactive */ 1672 /* now clear the delNode, free it by making as inactive */
1668 pa_acl_list_elem_free(delNode); 1673 pa_acl_list_elem_free(delNode);