fix uninitialized variable

svn path=/trunk/; revision=18981
This commit is contained in:
Royce Mitchell III 2005-11-04 00:10:39 +00:00
parent 7783f0f747
commit 13415bb36a

View file

@ -449,7 +449,7 @@ VfatCreateFile ( PDEVICE_OBJECT DeviceObject, PIRP Irp )
PDEVICE_EXTENSION DeviceExt;
ULONG RequestedDisposition, RequestedOptions;
PVFATCCB pCcb;
PVFATFCB pFcb;
PVFATFCB pFcb = NULL;
PVFATFCB ParentFcb;
PWCHAR c, last;
BOOLEAN PagingFileCreate = FALSE;