mirror of
https://github.com/reactos/reactos.git
synced 2024-12-26 17:14:41 +00:00
fix uninitialized variable
svn path=/trunk/; revision=18981
This commit is contained in:
parent
7783f0f747
commit
13415bb36a
1 changed files with 67 additions and 67 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue