diff options
Diffstat (limited to 'src/gui/dialogs/gotox.c')
-rw-r--r-- | src/gui/dialogs/gotox.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gui/dialogs/gotox.c b/src/gui/dialogs/gotox.c index ec665c1..2179960 100644 --- a/src/gui/dialogs/gotox.c +++ b/src/gui/dialogs/gotox.c @@ -393,6 +393,8 @@ static void add_new_location_to_list(GtkTreeStore *store, GLoadedBinary *binary, cache = g_loaded_binary_get_disassembly_cache(binary); + g_buffer_cache_rlock(cache); + cursor = g_binary_cursor_new(); g_binary_cursor_update(G_BINARY_CURSOR(cursor), addr); @@ -404,6 +406,8 @@ static void add_new_location_to_list(GtkTreeStore *store, GLoadedBinary *binary, line = g_buffer_cache_find_line_by_index(cache, index); + g_buffer_cache_runlock(cache); + g_object_unref(G_OBJECT(cache)); /* Adresse en mémoire virtuelle */ |