From eea659140eff93a6db49af4fbcf1cdafd1992f60 Mon Sep 17 00:00:00 2001 From: julian Date: Tue, 9 Jan 2001 00:49:31 +0000 Subject: Missing FREE(). --- sys/netgraph/ng_rfc1490.c | 1 + 1 file changed, 1 insertion(+) (limited to 'sys/netgraph/ng_rfc1490.c') diff --git a/sys/netgraph/ng_rfc1490.c b/sys/netgraph/ng_rfc1490.c index b18e297..0d7a2e4 100644 --- a/sys/netgraph/ng_rfc1490.c +++ b/sys/netgraph/ng_rfc1490.c @@ -310,6 +310,7 @@ ng_rfc1490_shutdown(node_p node) /* Take down netgraph node */ bzero(priv, sizeof(*priv)); + FREE(priv, M_NETGRAPH); NG_NODE_SET_PRIVATE(node, NULL); NG_NODE_UNREF(node); /* let the node escape */ return (0); -- cgit v1.1