avoid using a var uninitialised
authorjsg <jsg@openbsd.org>
Thu, 15 Oct 2015 01:14:33 +0000 (01:14 +0000)
committerjsg <jsg@openbsd.org>
Thu, 15 Oct 2015 01:14:33 +0000 (01:14 +0000)
ok jung@

sys/dev/isa/asmc.c

index e8c25e3..147fbe6 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: asmc.c,v 1.10 2015/10/10 12:05:47 jung Exp $  */
+/*     $OpenBSD: asmc.c,v 1.11 2015/10/15 01:14:33 jsg Exp $   */
 /*
  * Copyright (c) 2015 Joerg Jung <jung@openbsd.org>
  *
@@ -514,6 +514,7 @@ asmc_motions(struct asmc_softc *sc, uint8_t *n)
        int i;
 
        *n = 0;
+       s = 0;
        if (asmc_try(sc, ASMC_READ, "MOCN", buf, 2) &&
            (s = asmc_status(sc)) != ASMC_NOTFOUND) {
                printf(", read MOCN failed (0x%x)", s);