Fix a wrong size calculation.
Modified: branches/win32k rewrite attempt/win32k/ntuser/msgqueue.c
--- branches/win32k rewrite attempt/win32k/ntuser/msgqueue.c 2005-08-04 22:08:16 UTC (rev 17051) +++ branches/win32k rewrite attempt/win32k/ntuser/msgqueue.c 2005-08-05 01:25:43 UTC (rev 17052) @@ -1491,7 +1491,7 @@
{ PUSER_MESSAGE_QUEUE Queue;
- Queue = UserAllocZeroTag(sizeof(USER_MESSAGE_QUEUE) + sizeof(PUSER_THREAD_INPUT),// + sizeof(THRDCARETINFO),
+ Queue = UserAllocZeroTag(sizeof(USER_MESSAGE_QUEUE) + sizeof(USER_THREAD_INPUT),// + sizeof(THRDCARETINFO),
TAG_MSGQ); if (!Queue)