Changeset 26068 in vbox for trunk/src/VBox/Frontends/VBoxSDL
- Timestamp:
- Jan 27, 2010 2:05:30 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 56996
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxSDL/VBoxSDL.cpp
r26067 r26068 5 5 6 6 /* 7 * Copyright (C) 2006-20 10Sun Microsystems, Inc.7 * Copyright (C) 2006-2009 Sun Microsystems, Inc. 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 1488 1488 AssertReleaseRC(vrc); 1489 1489 1490 rc = session->COMSETTER(FullConsole)(true);1491 if (FAILED(rc))1492 {1493 com::ErrorInfo info;1494 if (info.isFullAvailable())1495 PrintError("Could not select a full VM console",1496 info.getText().raw(), info.getComponent().raw());1497 goto leave;1498 }1499 1490 rc = virtualBox->OpenSession(session, uuidVM.toUtf16()); 1500 1491 if (FAILED(rc)) … … 1504 1495 PrintError("Could not open VirtualBox session", 1505 1496 info.getText().raw(), info.getComponent().raw()); 1497 goto leave; 1498 } 1499 if (!session) 1500 { 1501 RTPrintf("Could not open VirtualBox session!\n"); 1506 1502 goto leave; 1507 1503 } … … 2920 2916 callback.setNull(); 2921 2917 consoleCallback.setNull(); 2922 2918 2923 2919 LogFlow(("Uninitializing COM...\n")); 2924 2920 com::Shutdown();
Note:
See TracChangeset
for help on using the changeset viewer.