From 3e90cec75b108599b68e563146814c773217f3ea Mon Sep 17 00:00:00 2001 From: Hartmut Birr Date: Mon, 2 Jan 2006 17:46:35 +0000 Subject: [PATCH] Fixed the size of the allocated port structure. svn path=/trunk/; revision=20530 --- reactos/ntoskrnl/ps/kill.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/ntoskrnl/ps/kill.c b/reactos/ntoskrnl/ps/kill.c index 6e4b8a74c50..26f4ae24b35 100644 --- a/reactos/ntoskrnl/ps/kill.c +++ b/reactos/ntoskrnl/ps/kill.c @@ -754,7 +754,7 @@ NtRegisterThreadTerminatePort(HANDLE PortHandle) /* Allocate the Port and make sure it suceeded */ if((TerminationPort = ExAllocatePoolWithTag(NonPagedPool, - sizeof(PTERMINATION_PORT), + sizeof(TERMINATION_PORT), TAG('P', 's', 'T', '=')))) { /* Associate the Port */