From 359c1ad6bd116ca7b0f80a3e0a46fc4268b8cf29 Mon Sep 17 00:00:00 2001 From: Stefano Karapetsas Date: Sun, 23 Feb 2014 13:40:29 +0100 Subject: Fix double free --- shell/ev-window-title.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/shell/ev-window-title.c b/shell/ev-window-title.c index 7a61d962..7b8c45e8 100644 --- a/shell/ev-window-title.c +++ b/shell/ev-window-title.c @@ -142,14 +142,15 @@ ev_window_title_update (EvWindowTitle *window_title) } if (title && window_title->uri) { - char *tmp_title = title; + char *tmp_title; char *filename = get_filename_from_uri (window_title->uri); ev_window_title_sanitize_title (window_title, &title); - title = g_strdup_printf ("%s — %s", filename, title); + tmp_title = g_strdup_printf ("%s — %s", filename, title); - g_free (tmp_title); + g_free (title); g_free (filename); + title = tmp_title; } else if (window_title->uri) { title = get_filename_from_uri (window_title->uri); } else if (!title) { -- cgit v1.2.1