Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-6-0]: src/sys/netinet6 Pull up following revision(s) (requested b...



details:   https://anonhg.NetBSD.org/src/rev/b38a6a0ac571
branches:  netbsd-6-0
changeset: 775291:b38a6a0ac571
user:      martin <martin%NetBSD.org@localhost>
date:      Fri Feb 02 13:12:49 2018 +0000

description:
Pull up following revision(s) (requested by maxv in ticket #1525):
        sys/netinet6/nd6_nbr.c: revision 1.145 (patch)

Fix memory leak. Contrary to what the XXX indicates, this place is 100%
reachable remotely.

diffstat:

 sys/netinet6/nd6_nbr.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 120a196045ef -r b38a6a0ac571 sys/netinet6/nd6_nbr.c
--- a/sys/netinet6/nd6_nbr.c    Fri Feb 02 11:10:30 2018 +0000
+++ b/sys/netinet6/nd6_nbr.c    Fri Feb 02 13:12:49 2018 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: nd6_nbr.c,v 1.95 2011/12/19 11:59:58 drochner Exp $    */
+/*     $NetBSD: nd6_nbr.c,v 1.95.6.1 2018/02/02 13:12:49 martin Exp $  */
 /*     $KAME: nd6_nbr.c,v 1.61 2001/02/10 16:06:14 jinmei Exp $        */
 
 /*
@@ -31,7 +31,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: nd6_nbr.c,v 1.95 2011/12/19 11:59:58 drochner Exp $");
+__KERNEL_RCSID(0, "$NetBSD: nd6_nbr.c,v 1.95.6.1 2018/02/02 13:12:49 martin Exp $");
 
 #include "opt_inet.h"
 #include "opt_ipsec.h"
@@ -589,7 +589,7 @@
 
        taddr6 = nd_na->nd_na_target;
        if (in6_setscope(&taddr6, ifp, NULL))
-               return;         /* XXX: impossible */
+               goto bad;
 
        if (IN6_IS_ADDR_MULTICAST(&taddr6)) {
                nd6log((LOG_ERR,



Home | Main Index | Thread Index | Old Index