Fix malloc() without legal mode flag.

This commit is contained in:
Poul-Henning Kamp 2003-03-17 07:28:01 +00:00
parent 8595de4aec
commit ddcceb7e08
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=112335
2 changed files with 2 additions and 2 deletions

View File

@ -3112,7 +3112,7 @@ fdmisccmd(dev_t dev, u_int cmd, void *data)
finfo = (struct fd_formb *)data;
idfield = (struct fdc_readid *)data;
bp = malloc(sizeof(struct bio), M_TEMP, M_ZERO);
bp = malloc(sizeof(struct bio), M_TEMP, M_WAITOK | M_ZERO);
/*
* Set up a bio request for fdstrategy(). bio_blkno is faked

View File

@ -3112,7 +3112,7 @@ fdmisccmd(dev_t dev, u_int cmd, void *data)
finfo = (struct fd_formb *)data;
idfield = (struct fdc_readid *)data;
bp = malloc(sizeof(struct bio), M_TEMP, M_ZERO);
bp = malloc(sizeof(struct bio), M_TEMP, M_WAITOK | M_ZERO);
/*
* Set up a bio request for fdstrategy(). bio_blkno is faked