From f404e670d5a2f8d3e60816b7446eaaf9dc433d14 Mon Sep 17 00:00:00 2001 From: Art Yerkes Date: Thu, 18 Nov 2004 05:02:10 +0000 Subject: [PATCH] Removed bad assertion. It's ok for TCPSendData to return immediately if the data has been copied into the tcp buffer. Requiring STATUS_PENDING here is definately an error. svn path=/trunk/; revision=11693 --- reactos/drivers/net/tcpip/tcpip/dispatch.c | 1 - 1 file changed, 1 deletion(-) diff --git a/reactos/drivers/net/tcpip/tcpip/dispatch.c b/reactos/drivers/net/tcpip/tcpip/dispatch.c index 3154fd79aa7..e14e8c38ca7 100644 --- a/reactos/drivers/net/tcpip/tcpip/dispatch.c +++ b/reactos/drivers/net/tcpip/tcpip/dispatch.c @@ -660,7 +660,6 @@ NTSTATUS DispTdiReceive( Irp); if (Status != STATUS_PENDING) { - ASSERT(0); DispDataRequestComplete(Irp, Status, BytesReceived); } }