From 54d037f689719a0f877b03d313dc3b670a17afb3 Mon Sep 17 00:00:00 2001 From: Christian Dywan Date: Thu, 14 Oct 2010 20:30:49 +0200 Subject: [PATCH] Free script code in thumb_view_load_status_cb with g_free Allocating and releasing must match. --- midori/midori-view.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/midori/midori-view.c b/midori/midori-view.c index 4c4b37ef..40ff24d3 100644 --- a/midori/midori-view.c +++ b/midori/midori-view.c @@ -5219,7 +5219,7 @@ thumb_view_load_status_cb (MidoriView* thumb_view, js = g_strdup_printf ("setThumbnail('%s','%s','%s');", dom_id, encoded, thumb_view->uri); webkit_web_view_execute_script (WEBKIT_WEB_VIEW (view->web_view), js); - free (js); + g_free (js); g_object_unref (img); g_free (dom_id); -- 2.39.5