]> spindle.queued.net Git - midori/commitdiff
sokoke_external_uri should return FALSE for non-URIs
authorChristian Dywan <christian@twotoasts.de>
Thu, 21 Oct 2010 18:45:12 +0000 (20:45 +0200)
committerChristian Dywan <christian@twotoasts.de>
Thu, 21 Oct 2010 19:09:01 +0000 (21:09 +0200)
In particular search key words.

midori/sokoke.c

index 9a0d960bce5973cad5248668f6a3e9d46ea103b5..bce377b8932bd37ea34281721867709640a95c4f 100644 (file)
@@ -749,6 +749,9 @@ sokoke_external_uri (const gchar* uri)
         return FALSE;
 
     scheme = g_uri_parse_scheme (uri);
+    if (!scheme)
+        return FALSE;
+
     info = g_app_info_get_default_for_uri_scheme (scheme);
     g_free (scheme);
     if (info)