Changeset 107413 in vbox for trunk/src/VBox/HostServices
- Timestamp:
- Jan 6, 2025 12:13:18 PM (13 days ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedFolders/mappings.cpp
r106061 r107413 230 230 } 231 231 232 233 232 MAPPING *vbsfMappingGetByRoot(SHFLROOT root) 234 233 { … … 236 235 { 237 236 SHFLROOT iMapping = g_aIndexFromRoot[root]; 238 239 if ( iMapping != SHFL_ROOT_NIL 240 && iMapping < RT_ELEMENTS(g_FolderMapping)) 241 { 237 if (iMapping != SHFL_ROOT_NIL) 242 238 return &g_FolderMapping[iMapping]; 243 }244 239 } 245 240
Note:
See TracChangeset
for help on using the changeset viewer.