Changeset 29625 in vbox for trunk/src/VBox
- Timestamp:
- May 18, 2010 12:40:24 PM (15 years ago)
- Location:
- trunk/src/VBox/Additions
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Miniport/Helper.cpp
r28800 r29625 133 133 req2->bpp = bpp; 134 134 rc = VbglGRPerform(&req2->header); 135 if (RT_SUCCESS(rc) && RT_SUCCESS(req2->header.rc))135 if (RT_SUCCESS(rc)) 136 136 { 137 137 bRC = req2->fSupported; … … 153 153 154 154 rc = VbglGRPerform(&req->header); 155 if (RT_SUCCESS(rc) && RT_SUCCESS(req->header.rc))155 if (RT_SUCCESS(rc)) 156 156 { 157 157 bRC = req->fSupported; … … 379 379 rc = VbglGRPerform (&req->header); 380 380 381 if (RT_SUCCESS(rc) && RT_SUCCESS(req->header.rc))381 if (RT_SUCCESS(rc)) 382 382 { 383 383 bRC = TRUE; -
trunk/src/VBox/Additions/WINNT/Graphics/Miniport/VBoxVideo.cpp
r28800 r29625 3372 3372 { 3373 3373 dprintf(("VBoxVideo::vboxVbvaEnable: rc = %Rrc!\n", rc)); 3374 3375 if (RT_SUCCESS(rc))3376 {3377 rc = req->header.rc;3378 }3379 3374 } 3380 3375 -
trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuest.cpp
r29617 r29625 246 246 pReq->u32NotMask = ~fMask; 247 247 rc = VbglGRPerform(&pReq->header); 248 if ( RT_FAILURE(rc) 249 || RT_FAILURE(pReq->header.rc)) 250 LogRel(("vboxGuestSetFilterMask: failed with rc=%Rrc and VMMDev rc=%Rrc\n", 251 rc, pReq->header.rc)); 248 if (RT_FAILURE(rc)) 249 LogRel(("vboxGuestSetFilterMask: failed with rc=%Rrc\n", rc)); 252 250 VbglGRFree(&pReq->header); 253 251 } … … 1143 1141 rc = VbglGRPerform(&pReq->header); 1144 1142 if (RT_FAILURE(rc)) 1145 Log(("VBoxGuestSetGuestCapabilities:VbglGRPerform failed, rc=%Rrc!\n", rc)); 1146 else if (RT_FAILURE(pReq->header.rc)) 1147 { 1148 Log(("VBoxGuestSetGuestCapabilities: The request failed; VMMDev rc=%Rrc!\n", pReq->header.rc)); 1149 rc = pReq->header.rc; 1150 } 1143 Log(("VBoxGuestSetGuestCapabilities: VbglGRPerform failed, rc=%Rrc!\n", rc)); 1151 1144 1152 1145 VbglGRFree(&pReq->header); … … 1492 1485 if (RT_FAILURE(rc)) 1493 1486 Log(("VBoxGuestCommonIOCtl: CTL_FILTER_MASK: VbglGRPerform failed, rc=%Rrc!\n", rc)); 1494 else if (RT_FAILURE(pReq->header.rc))1495 {1496 Log(("VBoxGuestCommonIOCtl: CTL_FILTER_MASK: The request failed; VMMDev rc=%Rrc!\n", pReq->header.rc));1497 rc = pReq->header.rc;1498 }1499 1487 1500 1488 VbglGRFree(&pReq->header);
Note:
See TracChangeset
for help on using the changeset viewer.