mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 11:53:21 +00:00
- Don't allocate pool with a NULL tag, use ExAllocatePool instead.
svn path=/trunk/; revision=29400
This commit is contained in:
parent
7b9b1a8536
commit
8206cd0b71
1 changed files with 2 additions and 2 deletions
|
@ -88,7 +88,7 @@ DWORD STDCALL NtGdiDdCreateSurface(
|
||||||
|
|
||||||
|
|
||||||
DPRINT1("Setup surface in put handler\n");
|
DPRINT1("Setup surface in put handler\n");
|
||||||
myhSurface = ExAllocatePoolWithTag( PagedPool, CreateSurfaceData.dwSCnt * sizeof(HANDLE), 0);
|
myhSurface = ExAllocatePool(PagedPool, CreateSurfaceData.dwSCnt * sizeof(HANDLE));
|
||||||
|
|
||||||
_SEH_TRY
|
_SEH_TRY
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue