summaryrefslogtreecommitdiffstats
path: root/sys/netgraph
diff options
context:
space:
mode:
Diffstat (limited to 'sys/netgraph')
-rw-r--r--sys/netgraph/ng_etf.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/netgraph/ng_etf.c b/sys/netgraph/ng_etf.c
index b452bdd..1db84a0 100644
--- a/sys/netgraph/ng_etf.c
+++ b/sys/netgraph/ng_etf.c
@@ -322,7 +322,8 @@ ng_etf_rcvmsg(node_p node, item_p item, hook_p lasthook)
MALLOC(fil, struct filter *, sizeof(*fil),
M_NETGRAPH_ETF, M_NOWAIT | M_ZERO);
if (fil == NULL) {
- return (ENOMEM);
+ error = ENOMEM;
+ break;
}
fil->match_hook = hook;
@@ -472,6 +473,7 @@ ng_etf_disconnect(hook_p hook)
LIST_FOREACH(fil, (etfp->hashtable + i), next) {
if (fil->match_hook == hook) {
LIST_REMOVE(fil, next);
+ FREE(fil, M_NETGRAPH_ETF);
}
}
}
OpenPOWER on IntegriCloud