- Initialize the per-process structure size : fixes console initialization.

svn path=/branches/ros-csrss/; revision=57702
This commit is contained in:
Hermès Bélusca-Maïto 2012-11-13 21:11:30 +00:00
parent bc0af6b272
commit e03c8d5702

View file

@ -459,7 +459,7 @@ CSR_SERVER_DLL_INIT(ConServerDllInitialization)
LoadedServerDll->DispatchTable = ConsoleServerApiDispatchTable;
LoadedServerDll->ValidTable = ConsoleServerApiServerValidTable;
LoadedServerDll->NameTable = ConsoleServerApiNameTable;
LoadedServerDll->SizeOfProcessData = 0;
LoadedServerDll->SizeOfProcessData = sizeof(CONSOLE_PROCESS_DATA);
LoadedServerDll->ConnectCallback = NULL;
LoadedServerDll->DisconnectCallback = Win32CsrReleaseConsole;
LoadedServerDll->NewProcessCallback = ConsoleNewProcess;