From f71635c0e49f0d3bb0a22cce6e87c1858c16f6eb Mon Sep 17 00:00:00 2001 From: Mike McLaughlin Date: Sat, 16 Jul 2022 15:06:31 -0700 Subject: [PATCH] Issue https://github.com/dotnet/diagnostics/issues/2998 --- src/SOS/lldbplugin/services.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SOS/lldbplugin/services.cpp b/src/SOS/lldbplugin/services.cpp index 95cf915917..8c9ac75c26 100644 --- a/src/SOS/lldbplugin/services.cpp +++ b/src/SOS/lldbplugin/services.cpp @@ -2798,7 +2798,7 @@ LLDBServices::ExecuteCommand( commandLine.append(arg); commandLine.append(" "); } - if (m_commands.find(commandName) == m_commands.end()) + if (m_commands.find(commandName) != m_commands.end()) { lldb::ReturnStatus status = m_interpreter.HandleCommand(commandLine.c_str(), result); result.SetStatus(status);