Skip to content

Commit

Permalink
Fixing wrong check (#95266)
Browse files Browse the repository at this point in the history
  • Loading branch information
thaystg authored Nov 28, 2023
1 parent 8105b67 commit 2158031
Showing 1 changed file with 1 addition and 1 deletion.
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 @@ -11155,7 +11155,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

0 comments on commit 2158031

Please sign in to comment.