Skip to content
Snippets Groups Projects
Commit ed2b5201 authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

Chase those suppressions

parent 430629d8
Branches
Tags
No related merge requests found
Pipeline #7701 passed
...@@ -147,8 +147,8 @@ long listDettach(link_list_t* list) ...@@ -147,8 +147,8 @@ long listDettach(link_list_t* list)
listLock(list); listLock(list);
if((refs=--list->refs)==0) { if((refs=--list->refs)==0) {
// coverity[sleep:SUPPRESS]
listUnlock(list); listUnlock(list);
// converity[sleep:SUPPRESS]
listFree(list); listFree(list);
} }
else else
...@@ -792,6 +792,7 @@ long listRemoveNodes(link_list_t* list, list_node_t* node, long max, bool free_d ...@@ -792,6 +792,7 @@ long listRemoveNodes(link_list_t* list, list_node_t* node, long max, bool free_d
for(count=0; node!=NULL && count<max; node=next_node, count++) { for(count=0; node!=NULL && count<max; node=next_node, count++) {
next_node = node->next; next_node = node->next;
// converity[double_lock:SUPPRESS]
if(listRemoveNode(list, node, free_data)==NULL) if(listRemoveNode(list, node, free_data)==NULL)
break; break;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment