svn commit: r252548 - head/sys/net

Hiroki Sato hrs at FreeBSD.org
Wed Jul 3 07:31:08 UTC 2013


Author: hrs
Date: Wed Jul  3 07:31:07 2013
New Revision: 252548
URL: http://svnweb.freebsd.org/changeset/base/252548

Log:
  Fix a compiler warning.
  
  MFC after:	1 week

Modified:
  head/sys/net/if_bridge.c

Modified: head/sys/net/if_bridge.c
==============================================================================
--- head/sys/net/if_bridge.c	Wed Jul  3 07:03:19 2013	(r252547)
+++ head/sys/net/if_bridge.c	Wed Jul  3 07:31:07 2013	(r252548)
@@ -1100,6 +1100,7 @@ bridge_ioctl_add(struct bridge_softc *sc
 		 * interfaces have inet6 address.  If any, remove
 		 * inet6 addresses on the interface to be added.
 		 */
+		ia6_m = NULL;
 		BRIDGE_XLOCK(sc);
 		LIST_FOREACH(bif, &sc->sc_iflist, bif_next) {
 			ia6_m = in6ifa_llaonifp(bif->bif_ifp);


More information about the svn-src-head mailing list