[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
KdbpPrint("\n");
if (KdbOutputAborted) break;
if (Address == 0)
break;
@ -2707,6 +2709,7 @@ KdbpCliMainLoop(
/* Call the command */
Continue = KdbpDoCommand(Command);
KdbOutputAborted = FALSE;
}
while (Continue);
}