From 59a39c2fc91ed5b750083bc51dc43b6510a501b6 Mon Sep 17 00:00:00 2001 From: walter erquinigo Date: Tue, 25 Apr 2023 14:46:34 -0500 Subject: [PATCH] [LLDB][REPL] Destroy the repl instances correctly This change ensures that the REPL map inside Target is destroyed correctly when `Target::Destroy()` is invoked. Not doing so results in the REPL not finishing its job when the debugger is initialized in REPL mode reading from a file. In my particular case, my REPL doesn't print the stdout of the last expression in the input file unless I include this change. Differential Revision: https://reviews.llvm.org/D149180 --- lldb/source/Target/Target.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/lldb/source/Target/Target.cpp b/lldb/source/Target/Target.cpp index c5946d1..4f3c644 100644 --- a/lldb/source/Target/Target.cpp +++ b/lldb/source/Target/Target.cpp @@ -293,6 +293,7 @@ void Target::Destroy() { m_stop_hooks.clear(); m_stop_hook_next_id = 0; m_suppress_stop_hooks = false; + m_repl_map.clear(); Args signal_args; ClearDummySignals(signal_args); } -- 2.7.4