[NTOSKRNL]

Fix aborting of backtraces

svn path=/trunk/; revision=50924
This commit is contained in:
Timo Kreuzer 2011-02-27 19:03:12 +00:00
parent 5e0cafbbda
commit 69d9838266

View file

@ -877,6 +877,8 @@ KdbpCmdBackTrace(
else else
KdbpPrint("\n"); KdbpPrint("\n");
if (KdbOutputAborted) break;
if (Address == 0) if (Address == 0)
break; break;
@ -2707,6 +2709,7 @@ KdbpCliMainLoop(
/* Call the command */ /* Call the command */
Continue = KdbpDoCommand(Command); Continue = KdbpDoCommand(Command);
KdbOutputAborted = FALSE;
} }
while (Continue); while (Continue);
} }