zero sizeof a struct not sizeof the pointer to it
authorjsg <jsg@openbsd.org>
Wed, 27 Jul 2016 01:36:37 +0000 (01:36 +0000)
committerjsg <jsg@openbsd.org>
Wed, 27 Jul 2016 01:36:37 +0000 (01:36 +0000)
ok mikeb@

sys/dev/pv/if_hvn.c

index c3aebfa..9bcc1ff 100644 (file)
@@ -675,7 +675,7 @@ hvn_nvsp_attach(struct hvn_softc *sc)
 
        mtx_init(&sc->sc_nvsplck, IPL_NET);
 
-       memset(pkt, 0, sizeof(pkt));
+       memset(pkt, 0, sizeof(*pkt));
        pkt->msg_type = nvsp_type_init;
        init = (struct nvsp_init *)&pkt->msg;
 
@@ -696,7 +696,7 @@ hvn_nvsp_attach(struct hvn_softc *sc)
                return (-1);
        }
 
-       memset(pkt, 0, sizeof(pkt));
+       memset(pkt, 0, sizeof(*pkt));
        pkt->msg_type = nvsp_type_send_ndis_vers;
        ver = (struct nvsp_send_ndis_version *)&pkt->msg;
        if (sc->sc_proto <= NVSP_PROTOCOL_VERSION_4)