Changeset 90780 in vbox for trunk/src/VBox/HostDrivers/Support/freebsd/SUPDrv-freebsd.c
- Timestamp:
- Aug 23, 2021 9:25:17 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/freebsd/SUPDrv-freebsd.c
r87700 r90780 476 476 * Some quick validations. 477 477 */ 478 if (RT_UNLIKELY(! VALID_PTR(pReq)))478 if (RT_UNLIKELY(!RT_VALID_PTR(pReq))) 479 479 return VERR_INVALID_POINTER; 480 480 … … 482 482 if (pSession) 483 483 { 484 if (RT_UNLIKELY(! VALID_PTR(pReq->pSession)))484 if (RT_UNLIKELY(!RT_VALID_PTR(pReq->pSession))) 485 485 return VERR_INVALID_PARAMETER; 486 486 if (RT_UNLIKELY(pSession->pDevExt != &g_VBoxDrvFreeBSDDevExt))
Note:
See TracChangeset
for help on using the changeset viewer.