From ddac0cda92c53be4d7dc035f60bd10af24d832ad Mon Sep 17 00:00:00 2001 From: Pierre Schweitzer Date: Fri, 4 Sep 2015 15:58:44 +0000 Subject: [PATCH] [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 --- reactos/drivers/filters/mountmgr/point.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/drivers/filters/mountmgr/point.c b/reactos/drivers/filters/mountmgr/point.c index 0c2136c1a7f..730add4c01e 100644 --- a/reactos/drivers/filters/mountmgr/point.c +++ b/reactos/drivers/filters/mountmgr/point.c @@ -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; }