mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 17:05:46 +00:00
Write the complete error message to debug log, instead of partial information
svn path=/trunk/; revision=33889
This commit is contained in:
parent
3f4244aafc
commit
c844e808fd
1 changed files with 3 additions and 2 deletions
|
@ -195,8 +195,8 @@ Win32CsrHardError(IN PCSRSS_PROCESS_DATA ProcessData,
|
|||
|
||||
HardErrorMessage->Response = ResponseNotHandled;
|
||||
|
||||
DPRINT1("NumberOfParameters = %d\n", HardErrorMessage->NumberOfParameters);
|
||||
DPRINT1("Status = %lx\n", HardErrorMessage->Status);
|
||||
DPRINT("NumberOfParameters = %d\n", HardErrorMessage->NumberOfParameters);
|
||||
DPRINT("Status = %lx\n", HardErrorMessage->Status);
|
||||
|
||||
// open client process
|
||||
InitializeObjectAttributes(&ObjectAttributes, NULL, 0, NULL, NULL);
|
||||
|
@ -514,6 +514,7 @@ Win32CsrHardError(IN PCSRSS_PROCESS_DATA ProcessData,
|
|||
}
|
||||
|
||||
// FIXME: We should not use MessageBox !!!!
|
||||
DPRINT1("%S\n", szxMessageBody);
|
||||
MessageBoxResponse = MessageBoxW(0, szxMessageBody, szxCaptionText, responce|MB_ICONERROR|MB_SYSTEMMODAL|MB_SETFOREGROUND);
|
||||
|
||||
RtlFreeHeap (RtlGetProcessHeap(), 0, szxMessageBody);
|
||||
|
|
Loading…
Reference in a new issue