[CDFS]
authorEric Kohl <eric.kohl@reactos.org>
Tue, 2 Jun 2015 13:14:33 +0000 (13:14 +0000)
committerEric Kohl <eric.kohl@reactos.org>
Tue, 2 Jun 2015 13:14:33 +0000 (13:14 +0000)
Initialize an uninitialized variable.

svn path=/trunk/; revision=68000

reactos/drivers/filesystems/cdfs/volinfo.c

index 1c2ec77..a692f1e 100644 (file)
@@ -179,7 +179,7 @@ CdfsGetFsFullSizeInformation(
     PULONG BufferLength)
 {
     PDEVICE_EXTENSION DeviceExt;
-    NTSTATUS Status;
+    NTSTATUS Status = STATUS_SUCCESS;
 
     DPRINT("CdfsGetFsFullSizeInformation()\n");
     DPRINT("FsSizeInfo = %p\n", FsSizeInfo);