From: Christian Dywan Date: Thu, 14 Oct 2010 18:30:49 +0000 (+0200) Subject: Free script code in thumb_view_load_status_cb with g_free X-Git-Url: https://spindle.queued.net/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=54d037f689719a0f877b03d313dc3b670a17afb3;p=midori Free script code in thumb_view_load_status_cb with g_free Allocating and releasing must match. --- 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);