Changeset 90805 in vbox for trunk/src/VBox/HostServices/GuestControl
- Timestamp:
- Aug 23, 2021 7:09:17 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 146440
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/GuestControl/VBoxGuestControlSvc.cpp
r90267 r90805 946 946 GstCtrlService::svcUnload(void *pvService) 947 947 { 948 AssertLogRelReturn( VALID_PTR(pvService), VERR_INVALID_PARAMETER);948 AssertLogRelReturn(RT_VALID_PTR(pvService), VERR_INVALID_PARAMETER); 949 949 SELF *pThis = reinterpret_cast<SELF *>(pvService); 950 950 AssertPtrReturn(pThis, VERR_INVALID_POINTER); … … 967 967 968 968 RT_NOREF(fRestoring, pvClient); 969 AssertLogRelReturn( VALID_PTR(pvService), VERR_INVALID_PARAMETER);969 AssertLogRelReturn(RT_VALID_PTR(pvService), VERR_INVALID_PARAMETER); 970 970 SELF *pThis = reinterpret_cast<SELF *>(pvService); 971 971 AssertPtrReturn(pThis, VERR_INVALID_POINTER); … … 2383 2383 GstCtrlService::svcHostCall(void *pvService, uint32_t u32Function, uint32_t cParms, VBOXHGCMSVCPARM paParms[]) 2384 2384 { 2385 AssertLogRelReturn( VALID_PTR(pvService), VERR_INVALID_PARAMETER);2385 AssertLogRelReturn(RT_VALID_PTR(pvService), VERR_INVALID_PARAMETER); 2386 2386 SELF *pThis = reinterpret_cast<SELF *>(pvService); 2387 2387 AssertPtrReturn(pThis, VERR_INVALID_POINTER); … … 2496 2496 LogFlowFunc(("pTable=%p\n", pTable)); 2497 2497 2498 if (!VALID_PTR(pTable)) 2499 { 2498 if (!RT_VALID_PTR(pTable)) 2500 2499 rc = VERR_INVALID_PARAMETER; 2501 }2502 2500 else 2503 2501 {
Note:
See TracChangeset
for help on using the changeset viewer.