mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 21:16:04 +00:00
Fixed usermode stack traces.
svn path=/trunk/; revision=7275
This commit is contained in:
parent
7ec1d6fece
commit
023ebb37c2
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: create.c,v 1.75 2003/12/24 19:57:42 gvg Exp $
|
||||
/* $Id: create.c,v 1.76 2003/12/27 23:55:02 navaraf Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS system libraries
|
||||
|
@ -333,7 +333,7 @@ _except_handler(
|
|||
PULONG Frame;
|
||||
DPRINT1("Frames:\n");
|
||||
Frame = (PULONG)((CONTEXT *)ContextRecord)->Ebp;
|
||||
while (Frame != NULL && Frame != (PULONG)0xdeadbeef)
|
||||
while ((PVOID)Frame[1] != NULL && (PULONG)Frame[1] != (PULONG)0xdeadbeef)
|
||||
{
|
||||
DPRINT1("%x\n", (PVOID)Frame[1]);
|
||||
Frame = (PULONG)Frame[0];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue