Changeset 71851 in vbox for trunk/src/VBox/Runtime/r3
- Timestamp:
- Apr 12, 2018 3:29:50 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 122068
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/nt/dirrel-r3-nt.cpp
r71844 r71851 256 256 &NtName, hRoot != NULL, pszDirAndFilter); 257 257 if (RT_SUCCESS(rc)) 258 { 259 /* Drop the filter from the NT name. */ 260 switch (enmFilter) 261 { 262 case RTDIRFILTER_NONE: 263 break; 264 case RTDIRFILTER_WINNT: 265 case RTDIRFILTER_UNIX: 266 case RTDIRFILTER_UNIX_UPCASED: 267 { 268 size_t cwc = NtName.Length / sizeof(RTUTF16); 269 while ( cwc > 0 270 && NtName.Buffer[cwc - 1] != '\\') 271 cwc--; 272 NtName.Buffer[cwc] = '\0'; 273 NtName.Length = (uint16_t)(cwc * sizeof(RTUTF16)); 274 break; 275 } 276 default: 277 AssertFailedBreak(); 278 } 279 258 280 rc = rtDirOpenRelativeOrHandle(phDir, szAbsDirAndFilter, enmFilter, fFlags, (uintptr_t)hRoot, &NtName); 281 } 259 282 RTNtPathFree(&NtName, NULL); 260 283 }
Note:
See TracChangeset
for help on using the changeset viewer.