Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/rttable.c
Original file line number Diff line number Diff line change
Expand Up @@ -704,13 +704,15 @@ int internAgeRoute(struct RouteTable* croute) {

// No activity was registered within the timelimit, so remove the route.
removeRoute(croute);
croute = NULL;
}
// Tell that the route was updated...
result = 1;
}

// The aging vif bits must be reset for each round...
BIT_ZERO(croute->ageVifBits);
if (croute != NULL)
BIT_ZERO(croute->ageVifBits);

return result;
}
Expand Down