[KERNEL32]

Cut a very loong DPRINT1 into pieces, to workaround the length limitation of debug strings I get.

svn path=/trunk/; revision=59849
This commit is contained in:
Hermès Bélusca-Maïto 2013-08-28 10:08:41 +00:00
parent 08dac57791
commit b96d93332b

View file

@ -629,8 +629,14 @@ BasePushProcessParameters(IN ULONG ParameterFlags,
/* Create the Parameter Block */
ProcessParameters = NULL;
DPRINT1("Image Name: %wZ Dll Path: %wZ current directory: %wZ, CmdLine: %wZ, Title: %wZ, Desktop: %wZ, Shell: %wZ, Runtime: %wZ\n",
&ImageName, &DllPath, &CurrentDirectory, &CommandLine, &Title, &Desktop, &Shell, &Runtime);
DPRINT1("ImageName: '%wZ'\n", &ImageName);
DPRINT1("DllPath : '%wZ'\n", &DllPath);
DPRINT1("CurDir : '%wZ'\n", &CurrentDirectory);
DPRINT1("CmdLine : '%wZ'\n", &CommandLine);
DPRINT1("Title : '%wZ'\n", &Title);
DPRINT1("Desktop : '%wZ'\n", &Desktop);
DPRINT1("Shell : '%wZ'\n", &Shell);
DPRINT1("Runtime : '%wZ'\n", &Runtime);
Status = RtlCreateProcessParameters(&ProcessParameters,
&ImageName,
&DllPath,