Changeset 41441 in vbox for trunk/src/VBox/Additions/WINNT
- Timestamp:
- May 24, 2012 5:26:51 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxSharedFolders.cpp
r34613 r41441 36 36 rc = VbglR3SharedFolderGetMappings(u32ClientId, true /* Only process auto-mounted folders */, 37 37 &paMappings, &cMappings); 38 if (RT_SUCCESS(rc) )38 if (RT_SUCCESS(rc) && cMappings) 39 39 { 40 40 #if 0 … … 144 144 rc = VbglR3SharedFolderGetMappings(u32ClientId, true /* Only process auto-mounted folders */, 145 145 &paMappings, &cMappings); 146 if (RT_SUCCESS(rc) )146 if (RT_SUCCESS(rc) && cMappings) 147 147 { 148 148 for (uint32_t i = 0; i < cMappings && RT_SUCCESS(rc); i++)
Note:
See TracChangeset
for help on using the changeset viewer.