[ros-diffs] [cgutman] 38871: - Call IRPFinish directly instead of through DispDataRequestComplete in DispCancelListenRequest
cgutman at svn.reactos.org
cgutman at svn.reactos.org
Sun Jan 18 06:51:13 CET 2009
Author: cgutman
Date: Sat Jan 17 23:51:13 2009
New Revision: 38871
URL: http://svn.reactos.org/svn/reactos?rev=38871&view=rev
Log:
- Call IRPFinish directly instead of through DispDataRequestComplete in DispCancelListenRequest
Modified:
branches/aicom-network-fixes/drivers/network/tcpip/tcpip/dispatch.c
Modified: branches/aicom-network-fixes/drivers/network/tcpip/tcpip/dispatch.c
URL: http://svn.reactos.org/svn/reactos/branches/aicom-network-fixes/drivers/network/tcpip/tcpip/dispatch.c?rev=38871&r1=38870&r2=38871&view=diff
==============================================================================
--- branches/aicom-network-fixes/drivers/network/tcpip/tcpip/dispatch.c [iso-8859-1] (original)
+++ branches/aicom-network-fixes/drivers/network/tcpip/tcpip/dispatch.c [iso-8859-1] Sat Jan 17 23:51:13 2009
@@ -256,7 +256,8 @@
IoReleaseCancelSpinLock(Irp->CancelIrql);
- DispDataRequestComplete(Irp, STATUS_CANCELLED, 0);
+ Irp->IoStatus.Information = 0;
+ IRPFinish(Irp, STATUS_CANCELLED);
TI_DbgPrint(MAX_TRACE, ("Leaving.\n"));
}
More information about the Ros-diffs
mailing list