diff options
author | Milan Crha <mcrha@redhat.com> | 2010-06-25 02:43:16 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2010-06-25 02:43:16 +0800 |
commit | 179db75ce041706a590e90a6ac7b801b36091ed6 (patch) | |
tree | 1aad2005c928c833690303d749e477e872009aa2 /widgets/misc/e-dateedit.c | |
parent | 9d538474a855d64e338bf7a94925cbde31a81bd5 (diff) | |
download | gsoc2013-evolution-179db75ce041706a590e90a6ac7b801b36091ed6.tar.gz gsoc2013-evolution-179db75ce041706a590e90a6ac7b801b36091ed6.tar.zst gsoc2013-evolution-179db75ce041706a590e90a6ac7b801b36091ed6.zip |
Bug #620815 - Memory leaks with Evolution
Diffstat (limited to 'widgets/misc/e-dateedit.c')
-rw-r--r-- | widgets/misc/e-dateedit.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/widgets/misc/e-dateedit.c b/widgets/misc/e-dateedit.c index 73b649defd..77ffe91d68 100644 --- a/widgets/misc/e-dateedit.c +++ b/widgets/misc/e-dateedit.c @@ -2004,6 +2004,7 @@ e_date_edit_update_time_entry (EDateEdit *dedit) if (strcmp (b, t) == 0) { gtk_combo_box_set_active_iter (GTK_COMBO_BOX (priv->time_combo), &iter); + g_free (text); break; } } |