Changeset 75653 in vbox for trunk/src/VBox/HostServices/SharedFolders
- Timestamp:
- Nov 21, 2018 9:01:28 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 126832
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedFolders/vbsf.cpp
r75506 r75653 1178 1178 1179 1179 Assert(*pIndex == 0); 1180 hDir = pHandle->dir.Handle;1181 1180 1182 1181 cbDirEntry = 4096; … … 1195 1194 *pcFiles = 0; 1196 1195 1197 if (pPath) 1196 if (!pPath) 1197 hDir = pHandle->dir.Handle; 1198 else 1198 1199 { 1199 1200 if (pHandle->dir.SearchHandle == 0) … … 1220 1221 else 1221 1222 goto end; 1223 flags &= ~SHFL_LIST_RESTART; 1222 1224 } 1223 1225 Assert(pHandle->dir.SearchHandle); 1224 1226 hDir = pHandle->dir.SearchHandle; 1227 } 1228 1229 if (flags & SHFL_LIST_RESTART) 1230 { 1231 rc = RTDirRewind(hDir); 1232 if (RT_FAILURE(rc)) 1233 goto end; 1225 1234 } 1226 1235
Note:
See TracChangeset
for help on using the changeset viewer.