Changeset 90804 in vbox for trunk/src/VBox/HostDrivers/VBoxUSB/win
- Timestamp:
- Aug 23, 2021 7:08:53 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 146439
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxUSB/win/mon/VBoxUsbMon.cpp
r88531 r90804 296 296 PDEVICE_RELATIONS pRel = (PDEVICE_RELATIONS)IoStatus.Information; 297 297 LOG(("pRel = %p", pRel)); 298 if (VALID_PTR(pRel)) 299 { 298 if (RT_VALID_PTR(pRel)) 300 299 *pDevRelations = pRel; 301 }302 300 else 303 301 { … … 370 368 { 371 369 WCHAR *pId = (WCHAR *)pIoStatus->Information; 372 if ( VALID_PTR(pId))370 if (RT_VALID_PTR(pId)) 373 371 { 374 372 KIRQL Iqrl = KeGetCurrentIrql(); … … 421 419 WCHAR *pTmp; 422 420 #endif 423 if ( VALID_PTR(pId))421 if (RT_VALID_PTR(pId)) 424 422 { 425 423 KIRQL Iqrl = KeGetCurrentIrql(); … … 582 580 PDEVICE_RELATIONS pRel = (PDEVICE_RELATIONS)pIoStatus->Information; 583 581 LOG(("pRel = %p", pRel)); 584 if ( VALID_PTR(pRel))582 if (RT_VALID_PTR(pRel)) 585 583 { 586 584 for (unsigned i=0;i<pRel->Count;i++) … … 615 613 { 616 614 PDEVICE_CAPABILITIES pCaps = pSl->Parameters.DeviceCapabilities.Capabilities; 617 if ( VALID_PTR(pCaps))615 if (RT_VALID_PTR(pCaps)) 618 616 { 619 617 LOG(("Caps.SilentInstall = %d", pCaps->SilentInstall));
Note:
See TracChangeset
for help on using the changeset viewer.