From da4bfdae9779f034e18504c03d570da8c2bc0464 Mon Sep 17 00:00:00 2001 From: Johannes Obermayr Date: Fri, 27 Jan 2023 16:44:47 +0100 Subject: [PATCH] Fix unmappable characters for encoding US-ASCII > Task :Debugger-agent-lldb:compileJava /tmp/ghidra/Ghidra/Debug/Debugger-agent-lldb/src/main/java/agent/lldb/model/impl/LldbModelTargetProcessLaunchWithOptionsConnectorImpl.java:125: error: unmappable character (0xE2) for encoding US-ASCII "set this flag so lldb & the handee don???t race to set its exit status"); ^ /tmp/ghidra/Ghidra/Debug/Debugger-agent-lldb/src/main/java/agent/lldb/model/impl/LldbModelTargetProcessLaunchWithOptionsConnectorImpl.java:125: error: unmappable character (0x80) for encoding US-ASCII "set this flag so lldb & the handee don???t race to set its exit status"); ^ /tmp/ghidra/Ghidra/Debug/Debugger-agent-lldb/src/main/java/agent/lldb/model/impl/LldbModelTargetProcessLaunchWithOptionsConnectorImpl.java:125: error: unmappable character (0x99) for encoding US-ASCII "set this flag so lldb & the handee don???t race to set its exit status"); ^ > Task :Debugger-agent-frida:compileJava /tmp/ghidra/Ghidra/Debug/Debugger-agent-frida/src/main/java/agent/frida/model/impl/FridaModelTargetProcessLaunchWithOptionsConnectorImpl.java:125: error: unmappable character (0xE2) for encoding US-ASCII "set this flag so frida & the handee don???t race to set its exit status"); ^ /tmp/ghidra/Ghidra/Debug/Debugger-agent-frida/src/main/java/agent/frida/model/impl/FridaModelTargetProcessLaunchWithOptionsConnectorImpl.java:125: error: unmappable character (0x80) for encoding US-ASCII "set this flag so frida & the handee don???t race to set its exit status"); ^ /tmp/ghidra/Ghidra/Debug/Debugger-agent-frida/src/main/java/agent/frida/model/impl/FridaModelTargetProcessLaunchWithOptionsConnectorImpl.java:125: error: unmappable character (0x99) for encoding US-ASCII "set this flag so frida & the handee don???t race to set its exit status"); ^ --- .../FridaModelTargetProcessLaunchWithOptionsConnectorImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ghidra/Debug/Debugger-agent-frida/src/main/java/agent/frida/model/impl/FridaModelTargetProcessLaunchWithOptionsConnectorImpl.java b/Ghidra/Debug/Debugger-agent-frida/src/main/java/agent/frida/model/impl/FridaModelTargetProcessLaunchWithOptionsConnectorImpl.java index d9e459341f..e5b9518574 100644 --- a/Ghidra/Debug/Debugger-agent-frida/src/main/java/agent/frida/model/impl/FridaModelTargetProcessLaunchWithOptionsConnectorImpl.java +++ b/Ghidra/Debug/Debugger-agent-frida/src/main/java/agent/frida/model/impl/FridaModelTargetProcessLaunchWithOptionsConnectorImpl.java @@ -122,7 +122,7 @@ public class FridaModelTargetProcessLaunchWithOptionsConnectorImpl extends Frida ParameterDescription pF8 = ParameterDescription.create(Boolean.class, "ExitRace", false, false, "Suppress race on exit", - "set this flag so frida & the handee don’t race to set its exit status"); + "set this flag so frida & the handee don't race to set its exit status"); map.put("ExitRace", pF8); ParameterDescription pF9 = ParameterDescription.create(Boolean.class, "Detach", false,