monitor: always respond to qXfer:memory-map:read

Fixes #5109
This commit is contained in:
Christian Prochaska
2024-02-01 12:59:56 +01:00
committed by Christian Helmuth
parent d23e1a87dd
commit 0bc2e240bf

View File

@@ -384,7 +384,10 @@ struct qXfer : Command_with_separator
State::Memory_map const memory_map(state._current->pd);
memory_map.with_bytes([&] (Const_byte_range_ptr const &bytes) {
_send_window(out, bytes, Window::from_args(args)); });
}
} else
gdb_response(out, [&] (Output &out) {
print(out, "l"); });
handled = true;
});