mirror of
https://github.com/reactos/reactos.git
synced 2026-06-05 03:02:59 +08:00
fix uninitialized variable warnings
svn path=/trunk/; revision=14526
This commit is contained in:
@@ -105,7 +105,7 @@ ReportDetectedDevice(
|
||||
IN PUNICODE_STRING CompatibleIds)
|
||||
{
|
||||
PDEVICE_OBJECT Pdo = NULL;
|
||||
PPDO_DEVICE_EXTENSION PdoDeviceExtension;
|
||||
PPDO_DEVICE_EXTENSION PdoDeviceExtension = NULL;
|
||||
PFDO_DEVICE_EXTENSION FdoDeviceExtension;
|
||||
NTSTATUS Status;
|
||||
|
||||
|
||||
@@ -100,7 +100,7 @@ SerenumFdoQueryBusRelations(
|
||||
PDEVICE_RELATIONS DeviceRelations;
|
||||
ULONG NumPDO;
|
||||
ULONG i;
|
||||
NTSTATUS Status;
|
||||
NTSTATUS Status = STATUS_SUCCESS;
|
||||
|
||||
DeviceExtension = (PFDO_DEVICE_EXTENSION)DeviceObject->DeviceExtension;
|
||||
ASSERT(DeviceExtension->Common.IsFDO);
|
||||
|
||||
Reference in New Issue
Block a user