mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
fix memory allocation for NDIS_WORK_ITEM
svn path=/trunk/; revision=36243
This commit is contained in:
parent
cd5303c9a0
commit
ffe9d022e2
1 changed files with 1 additions and 1 deletions
|
@ -900,7 +900,7 @@ VOID NTAPI MiniportDpc(
|
|||
|
||||
NDIS_DbgPrint(DEBUG_MINIPORT, ("Called.\n"));
|
||||
|
||||
NdisWorkItem = ExAllocatePool(NonPagedPool, sizeof(PNDIS_WORK_ITEM));
|
||||
NdisWorkItem = ExAllocatePool(NonPagedPool, sizeof(NDIS_WORK_ITEM));
|
||||
|
||||
WorkItem = (PWORK_QUEUE_ITEM)NdisWorkItem->WrapperReserved;
|
||||
|
||||
|
|
Loading…
Reference in a new issue