mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-29 12:23:30 +00:00
[NTOSKRNL]
- Quick fix for the crash loading boot-time legacy drivers - More device node flag state fixes coming soon svn path=/trunk/; revision=51946
This commit is contained in:
@@ -328,6 +328,12 @@ IopStartDevice(
|
||||
UNICODE_STRING KeyName;
|
||||
OBJECT_ATTRIBUTES ObjectAttributes;
|
||||
|
||||
if (((DeviceNode->Flags & DNF_STARTED) && !(DeviceNode->Flags & DNF_HAS_PROBLEM)) ||
|
||||
(DeviceNode->Flags & DNF_START_REQUEST_PENDING))
|
||||
{
|
||||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
Status = IopAssignDeviceResources(DeviceNode);
|
||||
if (!NT_SUCCESS(Status))
|
||||
goto ByeBye;
|
||||
|
||||
Reference in New Issue
Block a user