[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:
Pierre Schweitzer 2015-09-04 15:58:44 +00:00
parent bff1ce32bc
commit ddac0cda92

View file

@ -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;
}