avoid uninitialised var use
authorjsg <jsg@openbsd.org>
Sun, 14 Apr 2024 00:38:26 +0000 (00:38 +0000)
committerjsg <jsg@openbsd.org>
Sun, 14 Apr 2024 00:38:26 +0000 (00:38 +0000)
found by smatch, ok miod@

sys/dev/pci/qle.c

index 88f874b..ced20f8 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: qle.c,v 1.63 2022/04/16 19:19:59 naddy Exp $ */
+/*     $OpenBSD: qle.c,v 1.64 2024/04/14 00:38:26 jsg Exp $ */
 
 /*
  * Copyright (c) 2013, 2014 Jonathan Matthew <jmatthew@openbsd.org>
@@ -359,7 +359,7 @@ qle_attach(struct device *parent, struct device *self, void *aux)
 
        pcireg_t bars[] = { QLE_PCI_MEM_BAR, QLE_PCI_IO_BAR };
        pcireg_t memtype;
-       int r, i, rv, loop_up;
+       int r, i, rv, loop_up = 0;
 
        sc->sc_pc = pa->pa_pc;
        sc->sc_tag = pa->pa_tag;