Changeset 44970 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Mar 11, 2013 9:59:05 AM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 84190
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxSDL/VBoxSDL.cpp
r44528 r44970 5 5 6 6 /* 7 * Copyright (C) 2006-201 2Oracle Corporation7 * Copyright (C) 2006-2013 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 1446 1446 else 1447 1447 { 1448 RTPrintf("Error: machine with the given ID not found!\n"); 1448 RTPrintf("Error: machine with the given name not found!\n"); 1449 RTPrintf("Check if this VM has been corrupted and is now inaccessible."); 1449 1450 goto leave; 1450 1451 } … … 1454 1455 vrc = RTSemEventCreate(&g_EventSemSDLEvents); 1455 1456 AssertReleaseRC(vrc); 1457 1458 rc = pVirtualBoxClient->CheckMachineError(pMachine); 1459 if (FAILED(rc)) 1460 { 1461 com::ErrorInfo info; 1462 if (info.isFullAvailable()) 1463 PrintError("The VM has errors", 1464 info.getText().raw(), info.getComponent().raw()); 1465 else 1466 RTPrintf("Failed to check for VM errors! No error information available (rc=%Rhrc).\n", rc); 1467 goto leave; 1468 } 1456 1469 1457 1470 rc = pMachine->LockMachine(pSession, LockType_VM);
Note:
See TracChangeset
for help on using the changeset viewer.