From dbb87ec8a7fc8863fef3af35e0558cf006b5fe92 Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Wed, 3 Apr 2024 16:44:22 +0000 Subject: [PATCH] Fix typo in comment. Change-Id: I1d7e061cf7578d88987d16aa1684d94967af09f7 --- debuggerd/handler/debuggerd_handler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debuggerd/handler/debuggerd_handler.cpp b/debuggerd/handler/debuggerd_handler.cpp index 25031bff6..e26746b60 100644 --- a/debuggerd/handler/debuggerd_handler.cpp +++ b/debuggerd/handler/debuggerd_handler.cpp @@ -108,7 +108,7 @@ static bool is_permissive_mte() { "persist.device_config.memory_safety_native.permissive.process.%s", getprogname()); // DO NOT REPLACE this with GetBoolProperty. That uses std::string which allocates, so it is - // not async-safe (and this functiong gets used in a signal handler). + // not async-safe, and this function gets used in a signal handler. return property_parse_bool("persist.sys.mte.permissive") || property_parse_bool("persist.device_config.memory_safety_native.permissive.default") || property_parse_bool(process_sysprop_name) ||