Changeset 33557 in vbox
- Timestamp:
- Oct 28, 2010 1:27:45 PM (14 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/SystemPropertiesImpl.cpp
r33556 r33557 743 743 HRESULT rc = mParent->VRDEIsLibraryRegistered(Bstr(m->strDefaultVRDELibrary).raw(), &fFound); 744 744 745 if ( !fFound)745 if (FAILED(rc)|| !fFound) 746 746 return setError(E_FAIL, "The library is not registered\n"); 747 747 … … 765 765 { 766 766 BOOL fFound = FALSE; 767 HRESULTrc = mParent->VRDEIsLibraryRegistered(bstrLibrary.raw(), &fFound);768 769 if ( !fFound)767 rc = mParent->VRDEIsLibraryRegistered(bstrLibrary.raw(), &fFound); 768 769 if (FAILED(rc) || !fFound) 770 770 return setError(E_FAIL, "The library is not registered\n"); 771 771 } -
trunk/src/VBox/Main/xml/Settings.cpp
r33556 r33557 4371 4371 * then increase the version to VBox 4.0. 4372 4372 */ 4373 intcOldProperties = 0;4373 unsigned cOldProperties = 0; 4374 4374 4375 4375 StringsMap::const_iterator it = hardwareMachine.vrdeSettings.mapProperties.find("TCP/Ports");
Note:
See TracChangeset
for help on using the changeset viewer.