|
Description
|
As part of the code review walk with Nicolas, in mac_client_remove_flow_from_list() of mac.c, add an ASSERT.
static void
mac_client_remove_flow_from_list(mac_client_impl_t *mcip, flow_entry_t *flent)
{
.......
/* Should this be an ASSERT */ ====> Yes add an ASSERT!
if (fe != NULL) {
if (prev_fe == NULL) {
/* Deleting the first node */
mcip->mci_flent_list = fe->fe_client_next;
.........
}
|