Author: pschweitzer Date: Fri Sep 4 15:58:44 2015 New Revision: 69002
URL: http://svn.reactos.org/svn/reactos?rev=69002&view=rev Log: [MOUNTMGR] Fix a nasty typo in QueryPointsFromMemory() which was like breaking the behavior of IOCTL_MOUNTMGR_QUERY_POINTS, IOCTL_MOUNTMGR_DELETE_POINTS
CID 1321853
Modified: trunk/reactos/drivers/filters/mountmgr/point.c
Modified: trunk/reactos/drivers/filters/mountmgr/point.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filters/mountmgr/po... ============================================================================== --- trunk/reactos/drivers/filters/mountmgr/point.c [iso-8859-1] (original) +++ trunk/reactos/drivers/filters/mountmgr/point.c [iso-8859-1] Fri Sep 4 15:58:44 2015 @@ -356,7 +356,7 @@ /* Find back correct mount point */ if (UniqueId) { - if (!UniqueId->UniqueIdLength != DeviceInformation->UniqueId->UniqueIdLength) + if (UniqueId->UniqueIdLength != DeviceInformation->UniqueId->UniqueIdLength) { continue; }