mirror of
https://github.com/reactos/reactos.git
synced 2025-05-08 03:07:05 +00:00
[PORTCLS] Return STATUS_PENDING after calling IoMarkIrpPending. CORE-16611
This commit is contained in:
parent
606c912aa4
commit
5a43c52bbb
1 changed files with 2 additions and 2 deletions
|
@ -325,7 +325,7 @@ PortClsPower(
|
||||||
IoCompleteRequest(Irp, IO_NO_INCREMENT);
|
IoCompleteRequest(Irp, IO_NO_INCREMENT);
|
||||||
|
|
||||||
// done
|
// done
|
||||||
return Status;
|
return STATUS_PENDING;
|
||||||
}
|
}
|
||||||
|
|
||||||
// setup power context
|
// setup power context
|
||||||
|
@ -344,7 +344,7 @@ PortClsPower(
|
||||||
IoCompleteRequest(Irp, IO_NO_INCREMENT);
|
IoCompleteRequest(Irp, IO_NO_INCREMENT);
|
||||||
|
|
||||||
// done
|
// done
|
||||||
return Status;
|
return STATUS_PENDING;
|
||||||
}
|
}
|
||||||
|
|
||||||
// done
|
// done
|
||||||
|
|
Loading…
Reference in a new issue