VirtualBox

Changeset 90785 in vbox for trunk/src/VBox/Storage/testcase


Ignore:
Timestamp:
Aug 23, 2021 9:43:25 AM (4 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
146420
Message:

*: AssertReturn(VALID_PTR(),...) -> AssertPtrReturn

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Storage/testcase/vbox-img.cpp

    r82968 r90785  
    16301630static DECLCALLBACK(int) vdIfCfgCreateBaseQuerySize(void *pvUser, const char *pszName, size_t *pcbValue)
    16311631{
    1632     AssertReturn(VALID_PTR(pcbValue), VERR_INVALID_POINTER);
     1632    AssertPtrReturn(pcbValue, VERR_INVALID_POINTER);
    16331633
    16341634    AssertPtrReturn(pvUser, VERR_GENERAL_FAILURE);
     
    16441644static DECLCALLBACK(int) vdIfCfgCreateBaseQuery(void *pvUser, const char *pszName, char *pszValue, size_t cchValue)
    16451645{
    1646     AssertReturn(VALID_PTR(pszValue), VERR_INVALID_POINTER);
     1646    AssertPtrReturn(pszValue, VERR_INVALID_POINTER);
    16471647
    16481648    AssertPtrReturn(pvUser, VERR_GENERAL_FAILURE);
Note: See TracChangeset for help on using the changeset viewer.

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