diff options
author | infirit <[email protected]> | 2014-07-25 13:44:42 +0200 |
---|---|---|
committer | infirit <[email protected]> | 2014-07-25 13:44:42 +0200 |
commit | 62d68512d2c08c3f22d9ba82c3d0b68039472c77 (patch) | |
tree | a04f0b19783d621bd67589f56746badc2e5f4d3a /src | |
parent | e6f256f1fbd9edaa1875499c6ea8c82acc7f3b7d (diff) | |
download | eom-62d68512d2c08c3f22d9ba82c3d0b68039472c77.tar.bz2 eom-62d68512d2c08c3f22d9ba82c3d0b68039472c77.tar.xz |
Plug leaked glist in EogWindow
Based on eog commit 4f8def2160c053d910c15f53ace97ab7431c4bee
From Claudio Saavedra <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/eom-window.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/eom-window.c b/src/eom-window.c index eacdb0a..34b28b1 100644 --- a/src/eom-window.c +++ b/src/eom-window.c @@ -2532,7 +2532,8 @@ eom_window_unsaved_images_confirm (EomWindow *window) list = g_list_reverse (list); dialog = eom_close_confirmation_dialog_new (GTK_WINDOW (window), list); - + + g_list_free (list); g_signal_connect (dialog, "response", G_CALLBACK (close_confirmation_dialog_response_handler), |