VirtualBox

Changeset 71851 in vbox for trunk/src/VBox/Runtime/r3


Ignore:
Timestamp:
Apr 12, 2018 3:29:50 PM (7 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
122068
Message:

IPRT/nt/RTDirRelDirOpenFiltered: Must strip the filter from the NT path of NtCreateFile will return invalid name, duh!

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/r3/nt/dirrel-r3-nt.cpp

    r71844 r71851  
    256256                                        &NtName, hRoot != NULL, pszDirAndFilter);
    257257        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
    258280            rc = rtDirOpenRelativeOrHandle(phDir, szAbsDirAndFilter, enmFilter, fFlags, (uintptr_t)hRoot, &NtName);
     281        }
    259282        RTNtPathFree(&NtName, NULL);
    260283    }
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette