diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2018-05-07 14:24:16 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2018-05-07 14:24:16 (GMT) |
commit | c136e2c4c1ad02ea2e363fbe71ce54c6255793e2 (patch) | |
tree | ba19cc948ac23a3930d9943e94f8e37ec86991c1 /plugins/readdex | |
parent | b38035259b6e09c77d87950fe409fb72d09887d3 (diff) |
Extended the Python bindings for the Dex format.
Diffstat (limited to 'plugins/readdex')
-rw-r--r-- | plugins/readdex/class.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/readdex/class.c b/plugins/readdex/class.c index 9aa4433..c414821 100644 --- a/plugins/readdex/class.c +++ b/plugins/readdex/class.c @@ -297,7 +297,7 @@ bool annotate_dex_class_defs(const GDexFormat *format, GPreloadInfo *info, GtkSt if (def->class_data_off > 0) result = annotate_dex_class_data(format, info, class, def->class_data_off); - /* TODO : g_object_unref(G_OBJECT(class));*/ + g_object_unref(G_OBJECT(class)); gtk_status_stack_update_activity_value(status, msg, 1); |