VirtualBox

Changeset 90783 in vbox for trunk/src


Ignore:
Timestamp:
Aug 23, 2021 9:30:50 AM (3 years ago)
Author:
vboxsync
Message:

VMM: AssertMsgReturn(VALID_PTR(),...) -> AssertPtrReturn

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMR3/SSM.cpp

    r90782 r90783  
    16731673     * Validate input.
    16741674     */
    1675     AssertMsgReturn(VALID_PTR(pUsbIns), ("pUsbIns is NULL!\n"), VERR_INVALID_PARAMETER);
     1675    AssertPtrReturn(pUsbIns, VERR_INVALID_POINTER);
    16761676
    16771677    /*
     
    96499649    AssertMsgReturn(pSSM->enmOp == SSMSTATE_OPEN_READ, ("%d\n", pSSM->enmOp), VERR_INVALID_PARAMETER);
    96509650    AssertPtrReturn(pszUnit, VERR_INVALID_POINTER);
    9651     AssertMsgReturn(!piVersion || VALID_PTR(piVersion), ("%p\n", piVersion), VERR_INVALID_POINTER);
     9651    AssertPtrNullReturn(piVersion, VERR_INVALID_POINTER);
    96529652
    96539653    /*
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette