projects
/
reactos.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8a6dda0
)
[FREELDR]
author
Timo Kreuzer
<timo.kreuzer@reactos.org>
Sat, 20 Mar 2010 00:41:46 +0000
(
00:41
+0000)
committer
Timo Kreuzer
<timo.kreuzer@reactos.org>
Sat, 20 Mar 2010 00:41:46 +0000
(
00:41
+0000)
Make the char buffer in KeBugCheckEx big enough for the output string. Spottet by Russel.
svn path=/trunk/; revision=46282
reactos/boot/freeldr/freeldr/debug.c
patch
|
blob
|
history
diff --git
a/reactos/boot/freeldr/freeldr/debug.c
b/reactos/boot/freeldr/freeldr/debug.c
index
0de49f5
..
4ab9096
100644
(file)
--- a/
reactos/boot/freeldr/freeldr/debug.c
+++ b/
reactos/boot/freeldr/freeldr/debug.c
@@
-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);