- Make sure to set Irp->IoStatus.Status to the correct status
authorCameron Gutman <aicommander@gmail.com>
Sat, 2 Aug 2008 03:17:53 +0000 (03:17 +0000)
committerCameron Gutman <aicommander@gmail.com>
Sat, 2 Aug 2008 03:17:53 +0000 (03:17 +0000)
svn path=/branches/aicom-network-fixes/; revision=35023

drivers/network/tcpip/tcpip/main.c

index 9e795c1..19c5a67 100644 (file)
@@ -518,6 +518,8 @@ TiDispatchInternal(
 
   if( Complete )
       IRPFinish( Irp, Status );
+  else
+      Irp->IoStatus.Status = Status;
 
   return Status;
 }