mirror of
https://github.com/reactos/reactos.git
synced 2025-04-28 01:11:35 +00:00
[MOUNTMGR]
Fix a nasty typo in QueryPointsFromMemory() which was like breaking the behavior of IOCTL_MOUNTMGR_QUERY_POINTS, IOCTL_MOUNTMGR_DELETE_POINTS CID 1321853 svn path=/trunk/; revision=69002
This commit is contained in:
parent
bff1ce32bc
commit
ddac0cda92
1 changed files with 1 additions and 1 deletions
|
@ -356,7 +356,7 @@ QueryPointsFromMemory(IN PDEVICE_EXTENSION DeviceExtension,
|
|||
/* Find back correct mount point */
|
||||
if (UniqueId)
|
||||
{
|
||||
if (!UniqueId->UniqueIdLength != DeviceInformation->UniqueId->UniqueIdLength)
|
||||
if (UniqueId->UniqueIdLength != DeviceInformation->UniqueId->UniqueIdLength)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue