From 6fe164d65107354f22314fd0db8b894b8b1c2fdf Mon Sep 17 00:00:00 2001 From: ghidraffe <108089404+ghidraffe@users.noreply.github.com> Date: Tue, 19 May 2026 14:14:19 +0000 Subject: [PATCH] GP-6847 fix musl issue with _exit function for Decompiler --- Ghidra/Features/Decompiler/src/decompile/cpp/ghidra_process.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ghidra/Features/Decompiler/src/decompile/cpp/ghidra_process.cc b/Ghidra/Features/Decompiler/src/decompile/cpp/ghidra_process.cc index 4c41f6bca7..a93aa008b2 100644 --- a/Ghidra/Features/Decompiler/src/decompile/cpp/ghidra_process.cc +++ b/Ghidra/Features/Decompiler/src/decompile/cpp/ghidra_process.cc @@ -510,7 +510,7 @@ void GhidraDecompCapability::initialize(void) static void segvHandler(int4 sig) { - _exit(1); // Don't do any cleanup, just die - prevents OS from popping-up a dialog + _Exit(1); // Don't do any cleanup, just die - prevents OS from popping-up a dialog } } // End namespace ghidra