diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2015-11-11 23:05:36 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2015-11-11 23:05:36 (GMT) |
commit | 355a7140932b77d351bc6ddd965608b0011af855 (patch) | |
tree | f297872a2a33e0617d5fad0c85d00871f1482b06 /plugins/ropgadgets | |
parent | 0727204e36e919f06e80181482981c3f19669d76 (diff) |
Fixed most of the warnings about use of uninitialized data.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@607 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'plugins/ropgadgets')
-rw-r--r-- | plugins/ropgadgets/select.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/plugins/ropgadgets/select.c b/plugins/ropgadgets/select.c index 3ce04de..97ffc5d 100644 --- a/plugins/ropgadgets/select.c +++ b/plugins/ropgadgets/select.c @@ -1428,10 +1428,10 @@ static gpointer look_for_rop_gadgets(GObject *ref) push_dyn_status_printing_of_rop_search_step(ref, "final", msg, count > 0); - lfrg_unlock: - push_found_rop_gadgets(ref, format, list, count); + lfrg_unlock: + return NULL; } @@ -1782,6 +1782,8 @@ static void add_new_gadgets_for_category(GBinFormat *format, GtkComboBoxText *co { /* Parcours des différentes lignes */ + raw_virtual = NULL; + virtual = NULL; content_raw = NULL; content_markup = NULL; |