mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +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;
|
PDEVICE_EXTENSION DeviceExt;
|
||||||
ULONG RequestedDisposition, RequestedOptions;
|
ULONG RequestedDisposition, RequestedOptions;
|
||||||
PVFATCCB pCcb;
|
PVFATCCB pCcb;
|
||||||
PVFATFCB pFcb;
|
PVFATFCB pFcb = NULL;
|
||||||
PVFATFCB ParentFcb;
|
PVFATFCB ParentFcb;
|
||||||
PWCHAR c, last;
|
PWCHAR c, last;
|
||||||
BOOLEAN PagingFileCreate = FALSE;
|
BOOLEAN PagingFileCreate = FALSE;
|
||||||
|
|
Loading…
Reference in a new issue