mirror of
https://github.com/winfsp/winfsp.git
synced 2025-07-03 17:32:57 -05:00
sys: rename FspIopCompleteRequest to FspIopCompleteIrp
This commit is contained in:
@ -395,7 +395,7 @@ retry:
|
||||
|
||||
Result = FspIopDispatchPrepare(PendingIrp, PendingIrpRequest);
|
||||
if (!NT_SUCCESS(Result))
|
||||
FspIopCompleteRequest(PendingIrp, Result);
|
||||
FspIopCompleteIrp(PendingIrp, Result);
|
||||
else
|
||||
{
|
||||
NextRequest = FspFsctlTransactProduceRequest(
|
||||
@ -415,7 +415,7 @@ retry:
|
||||
* also cancel the PendingIrp we have in our hands.
|
||||
*/
|
||||
ASSERT(FspIoqStopped(&FsvrtDeviceExtension->Ioq));
|
||||
FspIopCompleteRequest(PendingIrp, STATUS_CANCELLED);
|
||||
FspIopCompleteIrp(PendingIrp, STATUS_CANCELLED);
|
||||
return STATUS_CANCELLED;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user