mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
[ISAPNP] Initialize uninitialized variable
Return value was a suggestion from Thomas, it still boots for me (tm)
This commit is contained in:
parent
db7ee3a756
commit
da777baa3d
1 changed files with 1 additions and 1 deletions
|
@ -191,7 +191,7 @@ IsaPdoStartReadPort(
|
|||
IN PIO_STACK_LOCATION IrpSp)
|
||||
{
|
||||
PCM_RESOURCE_LIST ResourceList = IrpSp->Parameters.StartDevice.AllocatedResources;
|
||||
NTSTATUS Status;
|
||||
NTSTATUS Status = STATUS_INVALID_PARAMETER;
|
||||
KIRQL OldIrql;
|
||||
ULONG i;
|
||||
|
||||
|
|
Loading…
Reference in a new issue