[MOUNTMGR]
authorPierre Schweitzer <pierre@reactos.org>
Fri, 4 Sep 2015 15:58:44 +0000 (15:58 +0000)
committerPierre Schweitzer <pierre@reactos.org>
Fri, 4 Sep 2015 15:58:44 +0000 (15:58 +0000)
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

reactos/drivers/filters/mountmgr/point.c

index 0c2136c..730add4 100644 (file)
@@ -356,7 +356,7 @@ QueryPointsFromMemory(IN PDEVICE_EXTENSION DeviceExtension,
         /* Find back correct mount point */
         if (UniqueId)
         {
         /* Find back correct mount point */
         if (UniqueId)
         {
-            if (!UniqueId->UniqueIdLength != DeviceInformation->UniqueId->UniqueIdLength)
+            if (UniqueId->UniqueIdLength != DeviceInformation->UniqueId->UniqueIdLength)
             {
                 continue;
             }
             {
                 continue;
             }