From 80709d78585cf13eb2350e7c3245224aaaf844e2 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Sat, 2 Aug 2008 03:17:53 +0000 Subject: [PATCH] - Make sure to set Irp->IoStatus.Status to the correct status svn path=/branches/aicom-network-fixes/; revision=35023 --- drivers/network/tcpip/tcpip/main.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/network/tcpip/tcpip/main.c b/drivers/network/tcpip/tcpip/main.c index 9e795c15c2b..19c5a67a681 100644 --- a/drivers/network/tcpip/tcpip/main.c +++ b/drivers/network/tcpip/tcpip/main.c @@ -518,6 +518,8 @@ TiDispatchInternal( if( Complete ) IRPFinish( Irp, Status ); + else + Irp->IoStatus.Status = Status; return Status; }