]> spindle.queued.net Git - midori/commitdiff
Do not validate URI or title when rendering completion matches
authorChristian Dywan <christian@twotoasts.de>
Tue, 26 Jan 2010 21:07:15 +0000 (22:07 +0100)
committerChristian Dywan <christian@twotoasts.de>
Tue, 26 Jan 2010 21:07:57 +0000 (22:07 +0100)
midori/midori-locationaction.c

index aa6bfbbffb3a71eeeada77729bd8e354bde1fcf1..69031dc922af6ef3fee463128070ade4ef9a8324 100644 (file)
@@ -946,10 +946,6 @@ midori_location_entry_render_text_cb (GtkCellLayout*   layout,
 
     if (G_LIKELY (uri))
     {
-        /* g_uri_unescape_segment () sometimes produces garbage */
-        if (!g_utf8_validate (uri, -1, (const gchar **)&temp))
-            temp[0] = '\0';
-
         temp = g_utf8_strdown (uri, -1);
         if ((start = strstr (temp, key)) && (start - temp))
         {
@@ -971,10 +967,6 @@ midori_location_entry_render_text_cb (GtkCellLayout*   layout,
 
     if (G_LIKELY (title))
     {
-        /* g_uri_unescape_segment () sometimes produces garbage */
-        if (!g_utf8_validate (title, -1, (const gchar **)&temp))
-            temp[0] = '\0';
-
         temp = g_utf8_strdown (title, -1);
         if ((start = strstr (temp, key)) && (start - temp))
         {