Changeset 90784 in vbox for trunk/src/VBox/VMM/VMMR3/VMReq.cpp
- Timestamp:
- Aug 23, 2021 9:42:32 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/VMReq.cpp
r85121 r90784 811 811 */ 812 812 AssertMsgReturn(pReq->enmState == VMREQSTATE_ALLOCATED, ("%d\n", pReq->enmState), VERR_VM_REQUEST_STATE); 813 AssertMsgReturn( VALID_PTR(pReq->pUVM)813 AssertMsgReturn( RT_VALID_PTR(pReq->pUVM) 814 814 && !pReq->pNext 815 815 && pReq->EventSem != NIL_RTSEMEVENT, … … 970 970 ("Invalid state %d\n", pReq->enmState), 971 971 VERR_VM_REQUEST_STATE); 972 AssertMsgReturn( VALID_PTR(pReq->pUVM)972 AssertMsgReturn( RT_VALID_PTR(pReq->pUVM) 973 973 && pReq->EventSem != NIL_RTSEMEVENT, 974 974 ("Invalid request package! Anyone cooking their own packages???\n"),
Note:
See TracChangeset
for help on using the changeset viewer.