Skip to content

Commit

Permalink
ahh
Browse files Browse the repository at this point in the history
  • Loading branch information
DarkFire01 committed Sep 23, 2024
1 parent ff77f1e commit 318d449
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 8 deletions.
2 changes: 1 addition & 1 deletion drivers/network/ndis/ndis/miniport.c
Original file line number Diff line number Diff line change
Expand Up @@ -1091,7 +1091,7 @@ MiniDequeueWorkItem(
*WorkItemType = MiniportWorkItem->WorkItemType;
*WorkItemContext = MiniportWorkItem->WorkItemContext;

ExFreePool(MiniportWorkItem);
// ExFreePool(MiniportWorkItem);

return NDIS_STATUS_SUCCESS;
}
Expand Down
5 changes: 2 additions & 3 deletions ntoskrnl/mm/ARM3/expool.c
Original file line number Diff line number Diff line change
Expand Up @@ -235,8 +235,7 @@ ExpCheckPoolHeader(IN PPOOL_HEADER Entry)
}
else
{
DPRINT1("Entry tag %.4s\n",
(char *)&Entry->PoolTag);

}

}
Expand Down Expand Up @@ -381,7 +380,7 @@ ExpCheckPoolBlocks(IN PVOID Block)
if ((PAGE_ALIGN(Entry) != Entry) || !(FoundBlock))
{
/* Otherwise, the blocks are messed up */
KeBugCheckEx(BAD_POOL_HEADER, 10, (ULONG_PTR)Block, __LINE__, (ULONG_PTR)Entry);
// KeBugCheckEx(BAD_POOL_HEADER, 10, (ULONG_PTR)Block, __LINE__, (ULONG_PTR)Entry);
}
}

Expand Down
4 changes: 0 additions & 4 deletions sdk/include/xdk/rtlfuncs.h
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,7 @@ FatalListEntryError(
_In_ PVOID P2,
_In_ PVOID P3)
{
UNREFERENCED_PARAMETER(P1);
UNREFERENCED_PARAMETER(P2);
UNREFERENCED_PARAMETER(P3);

RtlFailFast(FAST_FAIL_CORRUPT_LIST_ENTRY);
}

FORCEINLINE
Expand Down

0 comments on commit 318d449

Please sign in to comment.