mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
Don't use uninitialized variable in FdoQueryBusRelations.
svn path=/trunk/; revision=14114
This commit is contained in:
parent
40b71ac19d
commit
1fa5efe3d7
1 changed files with 2 additions and 2 deletions
|
@ -11,7 +11,7 @@
|
|||
#include <bm.h>
|
||||
#include <bn.h>
|
||||
|
||||
#define NDEBUG
|
||||
//#define NDEBUG
|
||||
#include <debug.h>
|
||||
|
||||
FADT_DESCRIPTOR_REV2 acpi_fadt;
|
||||
|
@ -126,7 +126,7 @@ FdoQueryBusRelations(
|
|||
ANSI_STRING AnsiString;
|
||||
ACPI_STATUS AcpiStatus;
|
||||
PACPI_DEVICE Device;
|
||||
NTSTATUS Status;
|
||||
NTSTATUS Status = STATUS_SUCCESS;
|
||||
BM_NODE *Node;
|
||||
ULONG Size;
|
||||
ULONG i;
|
||||
|
|
Loading…
Reference in a new issue