From 4439ab0fb97f7dfd12f42acd7aa08ec52f9feb0b Mon Sep 17 00:00:00 2001 From: Royce Mitchell III Date: Sun, 19 Dec 2004 05:08:53 +0000 Subject: [PATCH] small bugfix to KeRosDumpStackFrames svn path=/trunk/; revision=12218 --- reactos/ntoskrnl/ke/i386/exp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/ntoskrnl/ke/i386/exp.c b/reactos/ntoskrnl/ke/i386/exp.c index 85544a44309..13e991b1462 100644 --- a/reactos/ntoskrnl/ke/i386/exp.c +++ b/reactos/ntoskrnl/ke/i386/exp.c @@ -656,7 +656,7 @@ KeRosDumpStackFrames ( PULONG Frame, ULONG FrameCount ) #elif defined(_MSC_VER) __asm mov [Frame], ebp #endif - Frame = (PULONG)Frame[0]; // step out of KeRosDumpStackFrames + //Frame = (PULONG)Frame[0]; // step out of KeRosDumpStackFrames } while ( MmIsAddressValid(Frame) && i++ < FrameCount ) { -- 2.17.1