Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fixing wrong check
  • Loading branch information
thaystg authored and github-actions committed Nov 27, 2023
commit 5190248f2040b086e6d27df7f3fa63c23919ece2
2 changes: 1 addition & 1 deletion src/mono/mono/component/debugger-agent.c
Original file line number Diff line number Diff line change
Expand Up @@ -11087,7 +11087,7 @@ bool mono_debugger_agent_receive_and_process_command (void)
if (command_set == CMD_SET_VM && (command == CMD_VM_DISPOSE || command == CMD_VM_EXIT))
break;
}
return !(command_set == CMD_SET_VM && command == CMD_VM_DISPOSE);
return (command_set == CMD_SET_VM && command == CMD_VM_DISPOSE);
}

static gboolean
Expand Down