- Remove an incorrect comment (I wasn't thinking when I wrote it ;))

- Add an ASSERT for an unhandled case

svn path=/trunk/; revision=41265
This commit is contained in:
Cameron Gutman 2009-06-03 01:48:47 +00:00
parent 877b413520
commit 84594fb342

View file

@ -441,7 +441,6 @@ MiniSendComplete(
KeRaiseIrql(DISPATCH_LEVEL, &OldIrql);
/* Should we free this before or after calling SendComplete? */
if (Adapter->NdisMiniportBlock.ScatterGatherListSize != 0)
{
NDIS_DbgPrint(MAX_TRACE, ("Freeing Scatter/Gather list\n"));
@ -685,6 +684,8 @@ MiniQueryInformation(
/* FIXME: Wait in pending case! */
ASSERT(NdisStatus != NDIS_STATUS_PENDING);
return NdisStatus;
}