Author: tkreuzer
Date: Sat Mar 20 01:41:46 2010
New Revision: 46282
URL:
http://svn.reactos.org/svn/reactos?rev=46282&view=rev
Log:
[FREELDR]
Make the char buffer in KeBugCheckEx big enough for the output string. Spottet by Russel.
Modified:
trunk/reactos/boot/freeldr/freeldr/debug.c
Modified: trunk/reactos/boot/freeldr/freeldr/debug.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/boot/freeldr/freeldr/debug…
==============================================================================
--- trunk/reactos/boot/freeldr/freeldr/debug.c [iso-8859-1] (original)
+++ trunk/reactos/boot/freeldr/freeldr/debug.c [iso-8859-1] Sat Mar 20 01:41:46 2010
@@ -351,7 +351,7 @@
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);