mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 13:26:17 +00:00
[FREELDR]
Make the char buffer in KeBugCheckEx big enough for the output string. Spottet by Russel. svn path=/trunk/; revision=46282
This commit is contained in:
parent
8a6dda0909
commit
26a974f2a0
1 changed files with 1 additions and 1 deletions
|
@ -351,7 +351,7 @@ KeBugCheckEx(
|
|||
IN ULONG_PTR BugCheckParameter3,
|
||||
IN ULONG_PTR BugCheckParameter4)
|
||||
{
|
||||
char Buffer[64];
|
||||
char Buffer[70];
|
||||
sprintf(Buffer, "*** STOP: 0x%08lX (0x%08lX, 0x%08lX, 0x%08lX, 0x%08lX)",
|
||||
BugCheckCode, BugCheckParameter1, BugCheckParameter2,
|
||||
BugCheckParameter3, BugCheckParameter4);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue