Changeset 44109 in vbox for trunk/src/VBox/Additions/WINNT
- Timestamp:
- Dec 12, 2012 2:34:07 PM (12 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/VBox-4.2 (added) merged: 82653
- Property svn:mergeinfo changed
-
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxSharedFolders.cpp
r41443 r44109 27 27 uint32_t u32ClientId; 28 28 int rc = VbglR3SharedFolderConnect(&u32ClientId); 29 if (RT_FAILURE(rc)) 30 Log(("VBoxTray: Failed to connect to the shared folder service, error %Rrc\n", rc)); 31 else 29 if (RT_SUCCESS(rc)) 32 30 { 33 31 uint32_t cMappings; … … 128 126 VbglR3SharedFolderDisconnect(u32ClientId); 129 127 } 128 else 129 { 130 Log(("VBoxTray: Failed to connect to the shared folder service, error %Rrc\n", rc)); 131 /* return success, otherwise VBoxTray will not start! */ 132 rc = VINF_SUCCESS; 133 } 130 134 return rc; 131 135 }
Note:
See TracChangeset
for help on using the changeset viewer.