avoid uninitialised var use introduced in rev 1.63
authorjsg <jsg@openbsd.org>
Mon, 19 Aug 2024 08:07:16 +0000 (08:07 +0000)
committerjsg <jsg@openbsd.org>
Mon, 19 Aug 2024 08:07:16 +0000 (08:07 +0000)
found by smatch, ok bluhm@

sys/netinet6/mld6.c

index 61ff427..3efb7a9 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: mld6.c,v 1.63 2024/08/12 11:25:27 bluhm Exp $ */
+/*     $OpenBSD: mld6.c,v 1.64 2024/08/19 08:07:16 jsg Exp $   */
 /*     $KAME: mld6.c,v 1.26 2001/02/16 14:50:35 itojun Exp $   */
 
 /*
@@ -344,7 +344,7 @@ void
 mld6_fasttimeo(void)
 {
        struct ifnet *ifp;
-       int running;
+       int running = 0;
 
        /*
         * Quick check to see if any work needs to be done, in order