mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
[MOUNTMGR] QueryPointsFromSymbolicLinkName(): Fix a copypasta
Addendum to r55156. CORE-16371
This commit is contained in:
parent
13bb5e2317
commit
f5f52417cb
1 changed files with 1 additions and 1 deletions
|
@ -478,7 +478,7 @@ QueryPointsFromSymbolicLinkName(IN PDEVICE_EXTENSION DeviceExtension,
|
|||
/* Check for the link */
|
||||
for (SymlinksEntry = DeviceInformation->SymbolicLinksListHead.Flink;
|
||||
SymlinksEntry != &(DeviceInformation->SymbolicLinksListHead);
|
||||
SymlinksEntry = DeviceEntry->Flink)
|
||||
SymlinksEntry = SymlinksEntry->Flink)
|
||||
{
|
||||
SymlinkInformation = CONTAINING_RECORD(SymlinksEntry, SYMLINK_INFORMATION, SymbolicLinksListEntry);
|
||||
|
||||
|
|
Loading…
Reference in a new issue