From 246f078f4927595429878c4c662ac0e03580af65 Mon Sep 17 00:00:00 2001 From: Rui Caridade Date: Mon, 3 Sep 2018 21:48:44 +0100 Subject: sticky-notes: fix a memory leak origin commit: https://github.com/GNOME/gnome-applets/commit/f04777973b37265ca9e034421996f16d64853ee2 --- stickynotes/stickynotes.c | 1 + 1 file changed, 1 insertion(+) diff --git a/stickynotes/stickynotes.c b/stickynotes/stickynotes.c index 50d0f83a..f71577b0 100644 --- a/stickynotes/stickynotes.c +++ b/stickynotes/stickynotes.c @@ -317,6 +317,7 @@ void stickynote_free(StickyNote *note) gtk_widget_destroy(note->w_window); g_free(note->color); + g_free(note->font_color); g_free(note->font); g_free(note); -- cgit v1.2.1