diff options
| author | Gleb Smirnoff <glebius@FreeBSD.org> | 2006-10-11 14:33:08 +0000 |
|---|---|---|
| committer | Gleb Smirnoff <glebius@FreeBSD.org> | 2006-10-11 14:33:08 +0000 |
| commit | cf3254aac8d7355df2192ac8995bbbdffb08fa8a (patch) | |
| tree | 597cfe9de7b0ad9401cf5ad8292ad08d93a1a6a5 /sys | |
| parent | 1be947e9f80e17dc8d9aeacde516eecc513d6d0f (diff) | |
Notes
Diffstat (limited to 'sys')
| -rw-r--r-- | sys/netgraph/ng_base.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/netgraph/ng_base.c b/sys/netgraph/ng_base.c index e1073f44742a..b029ab8c9342 100644 --- a/sys/netgraph/ng_base.c +++ b/sys/netgraph/ng_base.c @@ -1129,6 +1129,9 @@ ng_bypass(hook_p hook1, hook_p hook2) hook1->hk_peer = &ng_deadhook; hook2->hk_peer = &ng_deadhook; + NG_HOOK_UNREF(hook1); + NG_HOOK_UNREF(hook2); + /* XXX If we ever cache methods on hooks update them as well */ ng_destroy_hook(hook1); ng_destroy_hook(hook2); |
