Author: jimtabor
Date: Thu Dec 30 05:56:50 2010
New Revision: 50222
URL:
http://svn.reactos.org/svn/reactos?rev=50222&view=rev
Log:
- Fix copy paste error, which means this code is not used, should have pop up during
testing.
Modified:
trunk/reactos/subsystems/win32/win32k/ntuser/message.c
Modified: trunk/reactos/subsystems/win32/win32k/ntuser/message.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/nt…
==============================================================================
--- trunk/reactos/subsystems/win32/win32k/ntuser/message.c [iso-8859-1] (original)
+++ trunk/reactos/subsystems/win32/win32k/ntuser/message.c [iso-8859-1] Thu Dec 30
05:56:50 2010
@@ -353,7 +353,7 @@
DPRINT1("Not enough memory to pack lParam\n");
return STATUS_NO_MEMORY;
}
- RtlCopyMemory(PackedmCs, UnpackedmCs, sizeof(CREATESTRUCTW));
+ RtlCopyMemory(PackedmCs, UnpackedmCs, sizeof(MDICREATESTRUCTW));
CsData = (PCHAR) (PackedmCs + 1);
PackedmCs->szTitle = (LPCWSTR) (CsData - (PCHAR) PackedmCs);
RtlCopyMemory(CsData, WindowName->Buffer, WindowName->Length);