Actually mark irp pending.

svn path=/trunk/; revision=40190
This commit is contained in:
Art Yerkes 2009-03-23 19:45:21 +00:00
parent 3b14a5465d
commit a822f03d45

View file

@ -321,5 +321,7 @@ NTSTATUS LostSocket( PIRP Irp ) {
NTSTATUS LeaveIrpUntilLater( PAFD_FCB FCB, PIRP Irp, UINT Function ) {
InsertTailList( &FCB->PendingIrpList[Function],
&Irp->Tail.Overlay.ListEntry );
IoMarkIrpPending(Irp);
Irp->IoStatus.Status = STATUS_PENDING;
return UnlockAndMaybeComplete( FCB, STATUS_PENDING, Irp, 0, NULL );
}