Changeset 90792 in vbox for trunk/src/VBox/HostServices/GuestProperties
- Timestamp:
- Aug 23, 2021 10:29:03 AM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 146427
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/GuestProperties/VBoxGuestPropSvc.cpp
r90238 r90792 330 330 static DECLCALLBACK(int) svcUnload(void *pvService) 331 331 { 332 AssertLogRelReturn( VALID_PTR(pvService), VERR_INVALID_PARAMETER);332 AssertLogRelReturn(RT_VALID_PTR(pvService), VERR_INVALID_PARAMETER); 333 333 SELF *pSelf = reinterpret_cast<SELF *>(pvService); 334 334 int rc = pSelf->uninit(); … … 367 367 uint64_t tsArrival) 368 368 { 369 AssertLogRelReturnVoid( VALID_PTR(pvService));369 AssertLogRelReturnVoid(RT_VALID_PTR(pvService)); 370 370 LogFlowFunc(("pvService=%p, callHandle=%p, u32ClientID=%u, pvClient=%p, u32Function=%u, cParms=%u, paParms=%p\n", pvService, callHandle, u32ClientID, pvClient, u32Function, cParms, paParms)); 371 371 SELF *pSelf = reinterpret_cast<SELF *>(pvService); … … 384 384 VBOXHGCMSVCPARM paParms[]) 385 385 { 386 AssertLogRelReturn( VALID_PTR(pvService), VERR_INVALID_PARAMETER);386 AssertLogRelReturn(RT_VALID_PTR(pvService), VERR_INVALID_PARAMETER); 387 387 LogFlowFunc(("pvService=%p, u32Function=%u, cParms=%u, paParms=%p\n", pvService, u32Function, cParms, paParms)); 388 388 SELF *pSelf = reinterpret_cast<SELF *>(pvService); … … 400 400 void *pvExtension) 401 401 { 402 AssertLogRelReturn( VALID_PTR(pvService), VERR_INVALID_PARAMETER);402 AssertLogRelReturn(RT_VALID_PTR(pvService), VERR_INVALID_PARAMETER); 403 403 SELF *pSelf = reinterpret_cast<SELF *>(pvService); 404 404 pSelf->mpfnHostCallback = pfnExtension;
Note:
See TracChangeset
for help on using the changeset viewer.