Add missing braces. Fixes boot-time kernel panic with ATAng and ATAPI/CAM.

Reviewed by:	roberto
This commit is contained in:
Thomas Quinot 2003-08-28 03:56:04 +00:00
parent b5b965a529
commit c8fb1af26c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=119518

View file

@ -465,9 +465,10 @@ atapi_action(struct cam_sim *sim, union ccb *ccb)
if ((ccb_h->flags & CAM_DIR_MASK) == CAM_DIR_IN && (len & 1)) {
/* ATA always transfers an even number of bytes */
if (!(buf = hcb->dxfer_alloc = malloc(++len, M_ATACAM,
M_NOWAIT | M_ZERO)))
M_NOWAIT | M_ZERO))) {
printf("cannot allocate ATAPI/CAM buffer\n");
goto action_oom;
}
}
request->device = dev;
request->driver = hcb;