From d81bed0847a56c80a289e61dcbc28b411c644362 Mon Sep 17 00:00:00 2001 From: Pierre Schweitzer Date: Sun, 12 Feb 2017 08:25:42 +0000 Subject: [PATCH 1/1] [FASTFAT] Remove useless assignement svn path=/trunk/; revision=73780 --- reactos/drivers/filesystems/fastfat/finfo.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/drivers/filesystems/fastfat/finfo.c b/reactos/drivers/filesystems/fastfat/finfo.c index b2c4a97e4d9..976822fcaf5 100644 --- a/reactos/drivers/filesystems/fastfat/finfo.c +++ b/reactos/drivers/filesystems/fastfat/finfo.c @@ -1428,7 +1428,7 @@ VfatQueryInformation( PVFAT_IRP_CONTEXT IrpContext) { FILE_INFORMATION_CLASS FileInformationClass; - PVFATFCB FCB = NULL; + PVFATFCB FCB; NTSTATUS Status = STATUS_SUCCESS; PVOID SystemBuffer; @@ -1554,7 +1554,7 @@ VfatSetInformation( PVFAT_IRP_CONTEXT IrpContext) { FILE_INFORMATION_CLASS FileInformationClass; - PVFATFCB FCB = NULL; + PVFATFCB FCB; NTSTATUS Status = STATUS_SUCCESS; PVOID SystemBuffer; -- 2.17.1