From aa98e3086ee1dee0d3afb5888e294991472288a5 Mon Sep 17 00:00:00 2001 From: Thomas Faber Date: Sat, 5 May 2012 10:31:47 +0000 Subject: [PATCH] [MOUNTMGR] - Silence false GCC warnings svn path=/trunk/; revision=56507 --- reactos/drivers/filters/mountmgr/point.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/drivers/filters/mountmgr/point.c b/reactos/drivers/filters/mountmgr/point.c index 5f8d33f2bc3..3eab7c360f3 100644 --- a/reactos/drivers/filters/mountmgr/point.c +++ b/reactos/drivers/filters/mountmgr/point.c @@ -43,7 +43,7 @@ MountMgrCreatePointWorker(IN PDEVICE_EXTENSION DeviceExtension, PMOUNTDEV_UNIQUE_ID UniqueId; PSYMLINK_INFORMATION SymlinkInformation; UNICODE_STRING SymLink, TargetDeviceName; - PDEVICE_INFORMATION DeviceInformation, DeviceInfo; + PDEVICE_INFORMATION DeviceInformation = NULL, DeviceInfo; /* Get device name */ Status = QueryDeviceInformation(SymbolicLinkName, @@ -434,7 +434,7 @@ QueryPointsFromSymbolicLinkName(IN PDEVICE_EXTENSION DeviceExtension, PIO_STACK_LOCATION Stack; UNICODE_STRING DeviceName; PMOUNTMGR_MOUNT_POINTS MountPoints; - PDEVICE_INFORMATION DeviceInformation; + PDEVICE_INFORMATION DeviceInformation = NULL; PLIST_ENTRY DeviceEntry, SymlinksEntry; PSYMLINK_INFORMATION SymlinkInformation;