Changeset 32664 in vbox
- Timestamp:
- Sep 21, 2010 1:09:17 PM (14 years ago)
- Location:
- trunk/src/VBox/Additions
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxGuest/VBoxGuest.cpp
r32661 r32664 1408 1408 rc = VbglGRPerform(&pReq->header); 1409 1409 if (RT_FAILURE(rc)) 1410 { 1410 1411 Log(("WRITE_CORE_DUMP: VbglGRPerform failed, rc=%Rrc!\n", rc)); 1412 Status = STATUS_UNSUCCESSFUL; 1413 } 1411 1414 VbglGRFree(&pReq->header); 1412 1415 } -
trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuest-win.cpp
r32617 r32664 766 766 if ( vrc == VERR_NOT_SUPPORTED 767 767 || vrc == VERR_INVALID_PARAMETER) 768 { 768 769 Status = STATUS_INVALID_PARAMETER; 770 } 771 else 772 Status = STATUS_UNSUCCESSFUL; 769 773 } 770 774 break;
Note:
See TracChangeset
for help on using the changeset viewer.