Skip to content

Commit

Permalink
[gnc-account-sel.c] GNCAccountSel finalize must free commodity list
Browse files Browse the repository at this point in the history
  • Loading branch information
christopherlam committed Mar 6, 2022
1 parent ce2b89f commit 3ab1d32
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions gnucash/gnome-utils/gnc-account-sel.c
Expand Up @@ -403,6 +403,9 @@ gnc_account_sel_finalize (GObject *object)
if (gas->acctTypeFilters)
g_list_free (gas->acctTypeFilters);

if (gas->acctCommodityFilters)
g_list_free (gas->acctCommodityFilters);

G_OBJECT_CLASS (parent_class)->finalize (object);
}

Expand Down

0 comments on commit 3ab1d32

Please sign in to comment.