]> spindle.queued.net Git - midori/commitdiff
Always free uri of the web view after applying addons
authorChristian Dywan <christian@twotoasts.de>
Wed, 1 Sep 2010 21:56:03 +0000 (23:56 +0200)
committerChristian Dywan <christian@twotoasts.de>
Wed, 1 Sep 2010 21:56:03 +0000 (23:56 +0200)
extensions/addons.c

index 00cd21fc4848e4a61316071afdb202c1949dd224..4eff71cfdb1ec279d8daf6b24fd304b571233332 100644 (file)
@@ -1240,6 +1240,7 @@ addons_context_ready_cb (WebKitWebView*   web_view,
     GSList* scripts, *styles;
     struct AddonElement* script, *style;
     struct AddonsList* scripts_list, *styles_list;
+
     uri = katze_object_get_string (web_view, "uri");
     /* Don't run scripts or styles on blank or special pages */
     if (!(uri && *uri && strncmp (uri, "about:", 6)))
@@ -1277,6 +1278,7 @@ addons_context_ready_cb (WebKitWebView*   web_view,
             webkit_web_view_execute_script (web_view, style->script_content);
         styles = g_slist_next (styles);
     }
+    g_free (uri);
 }
 
 static void