mirror of
https://github.com/reactos/reactos.git
synced 2026-06-01 00:40:26 +08:00
- We associate the MDL with the IRP later (in TdiBuildSend, TdiBuildReceive, etc)
svn path=/trunk/; revision=42468
This commit is contained in:
@@ -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"));
|
||||
|
||||
Reference in New Issue
Block a user