From 963218942e7870ff9a8b7539b4397ec4827aa12d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herv=C3=A9=20Poussineau?= Date: Tue, 1 Aug 2006 15:59:14 +0000 Subject: [PATCH] Use the locally modified StartupInfo, instead of the one the caller gave us svn path=/trunk/; revision=23407 --- reactos/dll/win32/kernel32/process/create.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/reactos/dll/win32/kernel32/process/create.c b/reactos/dll/win32/kernel32/process/create.c index fa20595cc41..5b6a19494c9 100644 --- a/reactos/dll/win32/kernel32/process/create.c +++ b/reactos/dll/win32/kernel32/process/create.c @@ -988,7 +988,7 @@ GetAppName: dwCreationFlags, lpEnvironment, lpCurrentDirectory, - lpStartupInfo, + &StartupInfo, lpProcessInformation); } #endif @@ -1059,7 +1059,7 @@ GetAppName: dwCreationFlags, lpEnvironment, lpCurrentDirectory, - lpStartupInfo, + &StartupInfo, lpProcessInformation); default: @@ -1278,7 +1278,7 @@ GetAppName: QuotedCmdLine : lpCommandLine, lpEnvironment, EnvSize, - lpStartupInfo, + &StartupInfo, dwCreationFlags, bInheritHandles);