mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
IoAllocateAdapterChannel should set CurrentIrp field in the wait context block.
svn path=/trunk/; revision=16863
This commit is contained in:
parent
7fdc3cb55b
commit
12e1f03a17
1 changed files with 3 additions and 3 deletions
|
@ -1212,7 +1212,7 @@ IopInitializeBuiltinDriver(
|
||||||
Status = IopCreateDeviceNode(IopRootDeviceNode, NULL, &DeviceNode);
|
Status = IopCreateDeviceNode(IopRootDeviceNode, NULL, &DeviceNode);
|
||||||
if (!NT_SUCCESS(Status))
|
if (!NT_SUCCESS(Status))
|
||||||
{
|
{
|
||||||
CPRINT("Driver load failed, status (%x)\n", Status);
|
CPRINT("Driver '%s' load failed, status (%x)\n", FileName, Status);
|
||||||
return(Status);
|
return(Status);
|
||||||
}
|
}
|
||||||
} else
|
} else
|
||||||
|
@ -1242,7 +1242,7 @@ IopInitializeBuiltinDriver(
|
||||||
{
|
{
|
||||||
if (ModuleDeviceNode == NULL)
|
if (ModuleDeviceNode == NULL)
|
||||||
IopFreeDeviceNode(DeviceNode);
|
IopFreeDeviceNode(DeviceNode);
|
||||||
CPRINT("Driver load failed, status (%x)\n", Status);
|
CPRINT("Driver '%s' load failed, status (%x)\n", FileName, Status);
|
||||||
return Status;
|
return Status;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1271,7 +1271,7 @@ IopInitializeBuiltinDriver(
|
||||||
{
|
{
|
||||||
if (ModuleDeviceNode == NULL)
|
if (ModuleDeviceNode == NULL)
|
||||||
IopFreeDeviceNode(DeviceNode);
|
IopFreeDeviceNode(DeviceNode);
|
||||||
CPRINT("Driver load failed, status (%x)\n", Status);
|
CPRINT("Driver '%s' load failed, status (%x)\n", FileName, Status);
|
||||||
return Status;
|
return Status;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue