Correct a few sizeof()s

Submitted by:	swildner@DragonFlyBSD.org
Reviewed by:	alfred
This commit is contained in:
Eitan Adler 2013-05-01 04:37:34 +00:00
parent a371ba805e
commit 578acad37e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=250131
4 changed files with 4 additions and 4 deletions

View File

@ -198,7 +198,7 @@ bcm_dma_reset(device_t dev, int ch)
/* Reset control block */
cb = sc->sc_dma_ch[ch].cb;
bzero(cb, sizeof(cb));
bzero(cb, sizeof(*cb));
cb->info = INFO_WAIT_RESP;
}

View File

@ -248,7 +248,7 @@ cfi_init(void)
sizeof(struct cfi_lun_io),
CTL_PORT_PRIV_SIZE);
}
memset(softc, 0, sizeof(softc));
memset(softc, 0, sizeof(*softc));
mtx_init(&softc->lock, "CTL frontend mutex", NULL, MTX_DEF);
softc->flags |= CTL_FLAG_MASTER_SHELF;

View File

@ -3596,7 +3596,7 @@ sppp_ipv6cp_RCR(struct sppp *sp, struct lcp_header *h, int len)
continue;
}
bzero(&suggestaddr, sizeof(&suggestaddr));
bzero(&suggestaddr, sizeof(suggestaddr));
if (collision && nohisaddr) {
/* collision, hisaddr unknown - Conf-Rej */
type = CONF_REJ;

View File

@ -618,7 +618,7 @@ fsk_detach(struct dn_fsk *fs, int flags)
fs->sched->fp->free_fsk(fs);
fs->sched = NULL;
if (flags & DN_DELETE_FS) {
bzero(fs, sizeof(fs)); /* safety */
bzero(fs, sizeof(*fs)); /* safety */
free(fs, M_DUMMYNET);
dn_cfg.fsk_count--;
} else {