mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 07:03:10 +00:00
- KeBugCheckEx expects BugCheckParameter2 to point to an array when the bug code is FATAL_UNHANDLED_HARD_ERROR -- properly stub out ExpSystemErrorHandler so we don't crash in KeBugCheckEx.
svn path=/trunk/; revision=43241
This commit is contained in:
parent
b42aaf88bb
commit
b3e77ecf83
1 changed files with 3 additions and 1 deletions
|
@ -58,10 +58,12 @@ ExpSystemErrorHandler(IN NTSTATUS ErrorStatus,
|
||||||
IN PULONG_PTR Parameters,
|
IN PULONG_PTR Parameters,
|
||||||
IN BOOLEAN Shutdown)
|
IN BOOLEAN Shutdown)
|
||||||
{
|
{
|
||||||
|
ULONG_PTR Dummy[4] = {0, 0, 0, 0};
|
||||||
|
|
||||||
/* FIXME: STUB */
|
/* FIXME: STUB */
|
||||||
KeBugCheckEx(FATAL_UNHANDLED_HARD_ERROR,
|
KeBugCheckEx(FATAL_UNHANDLED_HARD_ERROR,
|
||||||
ErrorStatus,
|
ErrorStatus,
|
||||||
0,
|
(ULONG_PTR)Dummy,
|
||||||
0,
|
0,
|
||||||
0);
|
0);
|
||||||
return STATUS_SUCCESS;
|
return STATUS_SUCCESS;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue