pf: Fix build if INVARIANTS is not set
r340061 included a number of assertions pf_frent_remove(), but these assertions were the only use of the 'prev' variable. As a result builds without INVARIANTS had an unused variable, and failed. Reported by: vangyzen@
This commit is contained in:
parent
6e3370ff0c
commit
97214080ce
@ -445,7 +445,9 @@ pf_frent_insert(struct pf_fragment *frag, struct pf_frent *frent,
|
||||
void
|
||||
pf_frent_remove(struct pf_fragment *frag, struct pf_frent *frent)
|
||||
{
|
||||
#ifdef INVARIANTS
|
||||
struct pf_frent *prev = TAILQ_PREV(frent, pf_fragq, fr_next);
|
||||
#endif
|
||||
struct pf_frent *next = TAILQ_NEXT(frent, fr_next);
|
||||
int index;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user