Changeset 83465 in vbox for trunk/src/VBox
- Timestamp:
- Mar 27, 2020 12:26:35 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceToolBox.cpp
r83463 r83465 893 893 break; 894 894 895 /* Skip the dot and dot-dot links. */896 if (RTDirEntryExIsStdDotLink(pDirEntry))897 continue;898 899 895 /* Check length. */ 900 896 if (pDirEntry->cbName + cchDir + 3 >= RTPATH_MAX) … … 916 912 case RTFS_TYPE_DIRECTORY: 917 913 { 914 rc = vgsvcToolboxPrintFsInfo(pDirEntry->szName, pDirEntry->cbName, fOutputFlags, pszDir, 915 pIdCache, &pDirEntry->Info); 916 if (RT_FAILURE(rc)) 917 break; 918 918 919 if (RTDirEntryExIsStdDotLink(pDirEntry)) 919 920 continue;
Note:
See TracChangeset
for help on using the changeset viewer.