[ros-diffs] [tkreuzer] 46282: [FREELDR] Make the char buffer in KeBugCheckEx big enough for the output string. Spottet by Russel.

tkreuzer at svn.reactos.org tkreuzer at svn.reactos.org
Sat Mar 20 01:41:46 CET 2010


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.c?rev=46282&r1=46281&r2=46282&view=diff
==============================================================================
--- 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);




More information about the Ros-diffs mailing list