Skip to content

Commit

Permalink
Issue dotnet#2998
Browse files Browse the repository at this point in the history
  • Loading branch information
mikem8361 committed Jul 29, 2022
1 parent 0eaf71c commit 568c336
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SOS/lldbplugin/services.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 568c336

Please sign in to comment.