Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
tandasat authored and aquynh committed Aug 17, 2016
1 parent ba82977 commit f39fada
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion windows/winkernel_mm.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ void * CAPSTONE_API cs_winkernel_malloc(size_t size)
NT_ASSERT(size);

CS_WINKERNEL_MEMBLOCK *block = (CS_WINKERNEL_MEMBLOCK *)ExAllocatePoolWithTag(
NonPagedPoolNx, size + sizeof(CS_WINKERNEL_MEMBLOCK), CS_WINKERNEL_POOL_TAG);
NonPagedPool, size + sizeof(CS_WINKERNEL_MEMBLOCK), CS_WINKERNEL_POOL_TAG);
if (!block) {
return NULL;
}
Expand Down

0 comments on commit f39fada

Please sign in to comment.