mirror of
https://github.com/reactos/reactos.git
synced 2025-01-05 22:12:46 +00:00
[NTOSKRNL]
Fix aborting of backtraces svn path=/trunk/; revision=50924
This commit is contained in:
parent
5e0cafbbda
commit
69d9838266
1 changed files with 3 additions and 0 deletions
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue