diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2015-09-10 08:45:33 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2015-09-10 08:45:33 +0000 |
commit | dc42a2ad60bf0644a34984b8041792d76951778f (patch) | |
tree | 56ac87a85055dc58b2c8e2c7e2995668e545e259 /sys/netinet6 | |
parent | 0a4f7b67d0c4548a8fc465b1bdd47cf9a5f3ff21 (diff) |
Trivial if_put addition. OK dlg@
Diffstat (limited to 'sys/netinet6')
-rw-r--r-- | sys/netinet6/in6.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/netinet6/in6.c b/sys/netinet6/in6.c index 26a037ac6a0..18efe274793 100644 --- a/sys/netinet6/in6.c +++ b/sys/netinet6/in6.c @@ -1,4 +1,4 @@ -/* $OpenBSD: in6.c,v 1.171 2015/09/09 15:51:40 mpi Exp $ */ +/* $OpenBSD: in6.c,v 1.172 2015/09/10 08:45:32 claudio Exp $ */ /* $KAME: in6.c,v 1.372 2004/06/14 08:14:21 itojun Exp $ */ /* @@ -1385,6 +1385,7 @@ in6_delmulti(struct in6_multi *in6m) ifma_list); splx(s); } + if_put(ifp); free(in6m, M_IPMADDR, 0); } |