From 4dfae6e299dfb03d2d9f620ddf2249cac303566e Mon Sep 17 00:00:00 2001 From: Pierre Schweitzer Date: Thu, 22 Jan 2009 16:50:23 +0000 Subject: [PATCH] Woops! I mixed my patches. It fixes leaks anyway ;). svn path=/trunk/; revision=39023 --- reactos/drivers/filesystems/fastfat_new/fsctl.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/reactos/drivers/filesystems/fastfat_new/fsctl.c b/reactos/drivers/filesystems/fastfat_new/fsctl.c index 95f66df5de2..e835fe3214c 100644 --- a/reactos/drivers/filesystems/fastfat_new/fsctl.c +++ b/reactos/drivers/filesystems/fastfat_new/fsctl.c @@ -129,8 +129,7 @@ FatiFileSystemControl(PFAT_IRP_CONTEXT IrpContext, PIRP Irp) IrpSp->Parameters.MountVolume.Vpb, IrpSp->DeviceObject); - if (!NT_SUCCESS(Status)) - FatCompleteRequest(IrpContext, Irp, Status); + FatCompleteRequest(IrpContext, Irp, Status); break;