- Timestamp:
- Aug 23, 2021 9:30:50 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/SSM.cpp
r90782 r90783 1673 1673 * Validate input. 1674 1674 */ 1675 Assert MsgReturn(VALID_PTR(pUsbIns), ("pUsbIns is NULL!\n"), VERR_INVALID_PARAMETER);1675 AssertPtrReturn(pUsbIns, VERR_INVALID_POINTER); 1676 1676 1677 1677 /* … … 9649 9649 AssertMsgReturn(pSSM->enmOp == SSMSTATE_OPEN_READ, ("%d\n", pSSM->enmOp), VERR_INVALID_PARAMETER); 9650 9650 AssertPtrReturn(pszUnit, VERR_INVALID_POINTER); 9651 Assert MsgReturn(!piVersion || VALID_PTR(piVersion), ("%p\n", piVersion), VERR_INVALID_POINTER);9651 AssertPtrNullReturn(piVersion, VERR_INVALID_POINTER); 9652 9652 9653 9653 /*
Note:
See TracChangeset
for help on using the changeset viewer.