From c732d0bbfbfc9e67c5d8c283d7bb1cc53d1d510a Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Fri, 7 Aug 2009 15:22:24 +0000 Subject: [PATCH] - We associate the MDL with the IRP later (in TdiBuildSend, TdiBuildReceive, etc) svn path=/trunk/; revision=42468 --- reactos/drivers/network/afd/afd/tdi.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/reactos/drivers/network/afd/afd/tdi.c b/reactos/drivers/network/afd/afd/tdi.c index ff67e954a7c..50cf59dbd8e 100644 --- a/reactos/drivers/network/afd/afd/tdi.c +++ b/reactos/drivers/network/afd/afd/tdi.c @@ -830,7 +830,7 @@ NTSTATUS TdiSend BufferLength, /* Length of buffer */ FALSE, /* Not secondary */ FALSE, /* Don't charge quota */ - *Irp); /* Use IRP */ + NULL); /* Don't use IRP */ if (!Mdl) { AFD_DbgPrint(MIN_TRACE, ("Insufficient resources.\n")); IoCompleteRequest(*Irp, IO_NO_INCREMENT); @@ -911,7 +911,7 @@ NTSTATUS TdiReceive( BufferLength, /* Length of buffer */ FALSE, /* Not secondary */ FALSE, /* Don't charge quota */ - *Irp); /* Use IRP */ + NULL); /* Don't use IRP */ if (!Mdl) { AFD_DbgPrint(MIN_TRACE, ("Insufficient resources.\n")); IoCompleteRequest(*Irp, IO_NO_INCREMENT); @@ -1011,7 +1011,7 @@ NTSTATUS TdiReceiveDatagram( BufferLength, /* Length of buffer */ FALSE, /* Not secondary */ FALSE, /* Don't charge quota */ - *Irp); /* Use IRP */ + NULL); /* Don't use IRP */ if (!Mdl) { AFD_DbgPrint(MIN_TRACE, ("Insufficient resources.\n")); IoCompleteRequest(*Irp, IO_NO_INCREMENT); @@ -1109,7 +1109,7 @@ NTSTATUS TdiSendDatagram( BufferLength, /* Length of buffer */ FALSE, /* Not secondary */ FALSE, /* Don't charge quota */ - *Irp); /* Use IRP */ + NULL); /* Don't use IRP */ if (!Mdl) { AFD_DbgPrint(MIN_TRACE, ("Insufficient resources.\n"));