1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-04 09:09:56 +00:00

Missing FREE().

This commit is contained in:
Julian Elischer 2001-01-09 00:49:31 +00:00
parent 42383764a0
commit 584af70a85
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=70810

View File

@ -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);