From 91f58e9d11920423fc194d74892b7e0b8ee4b3c5 Mon Sep 17 00:00:00 2001 From: momo5502 Date: Mon, 8 Sep 2025 08:15:09 +0200 Subject: [PATCH] Fix GDB address --- src/analyzer/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/analyzer/main.cpp b/src/analyzer/main.cpp index cb2830b2..8e20686d 100644 --- a/src/analyzer/main.cpp +++ b/src/analyzer/main.cpp @@ -294,7 +294,7 @@ namespace const auto should_stop = [&] { return signals_received > 0; }; win_x64_gdb_stub_handler handler{win_emu, should_stop}; - gdb_stub::run_gdb_stub(network::address{"0.0.0.0:28960", AF_INET}, handler); + gdb_stub::run_gdb_stub(network::address{address, AF_INET}, handler); } else if (!options.minidump_path.empty()) {