From 8d682ab52c6efa55652e83a064baec14c75ba7b9 Mon Sep 17 00:00:00 2001 From: Amine Khaldi Date: Mon, 13 Aug 2012 17:45:08 +0000 Subject: [PATCH] [MOUNTMGR] * Add a missing break. svn path=/trunk/; revision=57073 --- reactos/drivers/filters/mountmgr/device.c | 1 + 1 file changed, 1 insertion(+) diff --git a/reactos/drivers/filters/mountmgr/device.c b/reactos/drivers/filters/mountmgr/device.c index 70dfdd83227..081f514629f 100644 --- a/reactos/drivers/filters/mountmgr/device.c +++ b/reactos/drivers/filters/mountmgr/device.c @@ -1496,6 +1496,7 @@ MountMgrDeviceControl(IN PDEVICE_OBJECT DeviceObject, case IOCTL_MOUNTMGR_DELETE_POINTS: Status = MountMgrDeletePoints(DeviceExtension, Irp); + break; case IOCTL_MOUNTMGR_QUERY_POINTS: Status = MountMgrQueryPoints(DeviceExtension, Irp);