mirror of
https://github.com/reactos/reactos.git
synced 2025-05-07 02:41:22 +00:00
- We associate the MDL with the IRP later (in TdiBuildSend, TdiBuildReceive, etc)
svn path=/trunk/; revision=42468
This commit is contained in:
parent
3bc15ea3c0
commit
c732d0bbfb
1 changed files with 4 additions and 4 deletions
|
@ -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"));
|
||||
|
|
Loading…
Reference in a new issue