Changeset 70884 in vbox for trunk/src/VBox/Runtime/r3/nt
- Timestamp:
- Feb 6, 2018 4:26:08 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 120710
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/nt/direnum-r3-nt.cpp
r70419 r70884 108 108 #endif 109 109 if (hRelativeDir == ~(uintptr_t)0 && pvNativeRelative == NULL) 110 { 111 AssertMsg(pDir->fFlags & RTDIR_F_NO_FOLLOW /* Add FILE_OPEN_REPARSE_POINT and see how that works out (it better!). Need fallbacks for pre Vista. */, 112 ("Implement RTDIR_F_NO_FOLLOW!\n")); 110 113 rc = RTNtPathOpenDir(pszPathBuf, 111 114 FILE_LIST_DIRECTORY | FILE_READ_ATTRIBUTES | FILE_TRAVERSE | SYNCHRONIZE, … … 120 123 #endif 121 124 ); 125 } 122 126 else if (pvNativeRelative != NULL) 127 { 128 AssertMsg(pDir->fFlags & RTDIR_F_NO_FOLLOW /* Add FILE_OPEN_REPARSE_POINT and see how that works out (it better!). Need fallbacks for pre Vista. */, 129 ("Implement RTDIR_F_NO_FOLLOW!\n")); 123 130 rc = RTNtPathOpenDirEx((HANDLE)hRelativeDir, 124 131 (struct _UNICODE_STRING *)pvNativeRelative, … … 135 142 136 143 ); 144 } 137 145 else 138 146 {
Note:
See TracChangeset
for help on using the changeset viewer.