diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2015-02-09 20:15:52 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2015-02-09 20:15:52 (GMT) |
commit | 8d326041a0379b87e54be44506d544367567e89b (patch) | |
tree | a3c3555c27c30858155fbee4df0ca236f33774f8 /src/gui/panels | |
parent | b70f428256963385a140e9eb503624106df5aa9b (diff) |
Registered all the supported processors in the system code.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@467 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/gui/panels')
-rw-r--r-- | src/gui/panels/bookmarks.c | 6 | ||||
-rw-r--r-- | src/gui/panels/symbols.c | 10 |
2 files changed, 8 insertions, 8 deletions
diff --git a/src/gui/panels/bookmarks.c b/src/gui/panels/bookmarks.c index 4b4777e..9239203 100644 --- a/src/gui/panels/bookmarks.c +++ b/src/gui/panels/bookmarks.c @@ -473,7 +473,6 @@ static void reload_bookmarks_into_treeview(GBookmarksPanel *panel, GLoadedBinary { GtkTreeStore *store; /* Modèle de gestion */ GDbCollection *collec; /* Collection à lister ici */ - GExeFormat *format; /* Format du fichier binaire */ GArchProcessor *proc; /* Architecture du binaire */ MemoryDataSize msize; /* Taille par défaut */ GList *items; /* Liste des éléments groupés */ @@ -503,10 +502,9 @@ static void reload_bookmarks_into_treeview(GBookmarksPanel *panel, GLoadedBinary /* Actualisation de l'affichage */ - format = g_loaded_binary_get_format(binary); - proc = get_arch_processor_from_format(format); - + proc = g_loaded_binary_get_processor(binary); msize = g_arch_processor_get_memory_size(proc); + g_object_unref(G_OBJECT(proc)); collec = g_loaded_binary_find_collection(binary, DBF_BOOKMARKS); diff --git a/src/gui/panels/symbols.c b/src/gui/panels/symbols.c index cb10a54..e5fd390 100644 --- a/src/gui/panels/symbols.c +++ b/src/gui/panels/symbols.c @@ -635,9 +635,9 @@ static void change_symbols_panel_current_binary(GSymbolsPanel *panel, GLoadedBin static void reload_symbols_for_new_list_view(GSymbolsPanel *panel) { GExeFormat *format; /* Format associé au binaire */ - GArchProcessor *proc; /* Architecture utilisée */ GBinSymbol **symbols; /* Symboles à représenter */ size_t sym_count; /* Qté de symboles présents */ + GArchProcessor *proc; /* Architecture utilisée */ MemoryDataSize size; /* Taille des localisations */ size_t i; /* Boucle de parcours */ cairo_surface_t *icon; /* Image associée au symbole */ @@ -646,11 +646,12 @@ static void reload_symbols_for_new_list_view(GSymbolsPanel *panel) GtkTreeIter iter; /* Point d'insertion */ format = g_loaded_binary_get_format(panel->binary); - proc = get_arch_processor_from_format(format); symbols = g_binary_format_get_symbols(G_BIN_FORMAT(format), &sym_count); + proc = g_loaded_binary_get_processor(panel->binary); size = g_arch_processor_get_memory_size(proc); + g_object_unref(G_OBJECT(proc)); for (i = 0; i < sym_count; i++) { @@ -801,9 +802,9 @@ static bool find_parent_for_symbol(GtkTreeStore *store, const GBinSymbol *symbol static void reload_symbols_for_new_tree_view(GSymbolsPanel *panel) { GExeFormat *format; /* Format associé au binaire */ - GArchProcessor *proc; /* Architecture utilisée */ GBinSymbol **symbols; /* Symboles à représenter */ size_t sym_count; /* Qté de symboles présents */ + GArchProcessor *proc; /* Architecture utilisée */ MemoryDataSize size; /* Taille des localisations */ size_t i; /* Boucle de parcours */ GtkTreeIter parent; /* Point d'insertion parent */ @@ -813,11 +814,12 @@ static void reload_symbols_for_new_tree_view(GSymbolsPanel *panel) GtkTreeIter iter; /* Point d'insertion */ format = g_loaded_binary_get_format(panel->binary); - proc = get_arch_processor_from_format(format); symbols = g_binary_format_get_symbols(G_BIN_FORMAT(format), &sym_count); + proc = g_loaded_binary_get_processor(panel->binary); size = g_arch_processor_get_memory_size(proc); + g_object_unref(G_OBJECT(proc)); for (i = 0; i < sym_count; i++) { |