Skip to content
Snippets Groups Projects
Commit 7fcc2ab5 authored by Martine Lenders's avatar Martine Lenders
Browse files

gnrc_ipv6_nib: fix iteration conditions for cache-out

parent ea7f7c23
No related branches found
No related tags found
No related merge requests found
......@@ -152,7 +152,11 @@ static inline _nib_onl_entry_t *_cache_out_onl_entry(const ipv6_addr_t *addr,
/* no new entry created yet, get next entry in FIFO */
tmp = (_nib_onl_entry_t *)clist_lpop(&_next_removable);
}
} while ((tmp != first) && (res != NULL));
} while ((tmp != first) && (res == NULL));
if (res == NULL) {
/* we did not find any removable entry => requeue current one */
clist_rpush(&_next_removable, (clist_node_t *)tmp);
}
return res;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment