summaryrefslogtreecommitdiff
path: root/src/gui
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2016-05-30 20:31:59 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2016-05-30 20:31:59 (GMT)
commit36760a757f4c3cdecd04d678a41d3484dcdac566 (patch)
treeb4987539ac2bc5bfd65eec1600b464b11766cd0d /src/gui
parent3154db88ce14aa681cc553a8910edba1e69d8c2b (diff)
Resolved a suitable symbol depending on the request tolerance.
Diffstat (limited to 'src/gui')
-rw-r--r--src/gui/dialogs/gotox.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/dialogs/gotox.c b/src/gui/dialogs/gotox.c
index 5d19fee..0511be8 100644
--- a/src/gui/dialogs/gotox.c
+++ b/src/gui/dialogs/gotox.c
@@ -378,7 +378,7 @@ static void add_new_location_to_list(GtkTreeStore *store, GLoadedBinary *binary,
{
format = G_BIN_FORMAT(g_loaded_binary_get_format(binary));
- if (g_binary_format_resolve_symbol(format, addr, &symbol, &diff))
+ if (g_binary_format_resolve_symbol(format, addr, true, &symbol, &diff))
{
label = g_binary_symbol_get_label(symbol);