Changeset 90785 in vbox for trunk/src/VBox/Storage/testcase
- Timestamp:
- Aug 23, 2021 9:43:25 AM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 146420
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Storage/testcase/vbox-img.cpp
r82968 r90785 1630 1630 static DECLCALLBACK(int) vdIfCfgCreateBaseQuerySize(void *pvUser, const char *pszName, size_t *pcbValue) 1631 1631 { 1632 Assert Return(VALID_PTR(pcbValue), VERR_INVALID_POINTER);1632 AssertPtrReturn(pcbValue, VERR_INVALID_POINTER); 1633 1633 1634 1634 AssertPtrReturn(pvUser, VERR_GENERAL_FAILURE); … … 1644 1644 static DECLCALLBACK(int) vdIfCfgCreateBaseQuery(void *pvUser, const char *pszName, char *pszValue, size_t cchValue) 1645 1645 { 1646 Assert Return(VALID_PTR(pszValue), VERR_INVALID_POINTER);1646 AssertPtrReturn(pszValue, VERR_INVALID_POINTER); 1647 1647 1648 1648 AssertPtrReturn(pvUser, VERR_GENERAL_FAILURE);
Note:
See TracChangeset
for help on using the changeset viewer.