Conditionals tests in cfulist_delete_data_with_free_fn() were simplified

This commit is contained in:
Diogo Cordeiro 2018-06-08 13:57:08 +01:00
parent 9d8fbcf53d
commit c25e9cee24
1 changed files with 2 additions and 4 deletions

View File

@ -429,10 +429,7 @@ cfulist_delete_data_with_free_fn(cfulist_t *list, void *data, cfulist_free_fn_t
cfulist_entry *entry = list->entries;
while (entry)
{
if (entry->data != data) {
entry = entry->next;
continue;
} else {
if (entry->data == data) {
if (!entry->prev) {
if (entry->next) {
assert(list->num_entries > 1);
@ -451,6 +448,7 @@ cfulist_delete_data_with_free_fn(cfulist_t *list, void *data, cfulist_free_fn_t
--list->num_entries;
break;
}
entry = entry->next;
}
unlock_list(list);