[NTOS:KDBG] Temporarily HACK-remove the duplicated kdb:> when displaying the interactive KDBG prompt.

This commit is contained in:
Hermès Bélusca-Maïto 2023-08-29 22:32:29 +02:00
parent 86e0d5e9b8
commit 8c0c2e2be7
No known key found for this signature in database
GPG key ID: 3B2539C65E7B93D0

View file

@ -3299,7 +3299,8 @@ KdbpCliMainLoop(
* Repeat the last one if the user pressed Enter.
* This reduces the risk of RSI when single-stepping!
*/
CmdLen = KdbPrompt(KdbPromptStr.Buffer, Command, sizeof(Command));
// TEMP HACK! Issue an empty string instead of duplicating "kdb:>"
CmdLen = KdbPrompt(/*KdbPromptStr.Buffer*/"", Command, sizeof(Command));
if (CmdLen == 0)
{
/* Nothing received but the user didn't press Enter, retry */