artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bfef29a
)
avoid uninitialised var use introduced in rev 1.63
author
jsg
<jsg@openbsd.org>
Mon, 19 Aug 2024 08:07:16 +0000
(08:07 +0000)
committer
jsg
<jsg@openbsd.org>
Mon, 19 Aug 2024 08:07:16 +0000
(08:07 +0000)
found by smatch, ok bluhm@
sys/netinet6/mld6.c
patch
|
blob
|
history
diff --git
a/sys/netinet6/mld6.c
b/sys/netinet6/mld6.c
index
61ff427
..
3efb7a9
100644
(file)
--- a/
sys/netinet6/mld6.c
+++ b/
sys/netinet6/mld6.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: mld6.c,v 1.6
3 2024/08/12 11:25:27 bluhm Exp $
*/
+/* $OpenBSD: mld6.c,v 1.6
4 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