]> spindle.queued.net Git - midori/commitdiff
Skip bookmark URIS starting with '('
authorAlexander Butenko <a.butenka@gmail.com>
Thu, 1 Jul 2010 20:09:58 +0000 (22:09 +0200)
committerChristian Dywan <christian@twotoasts.de>
Thu, 1 Jul 2010 21:37:14 +0000 (23:37 +0200)
Due to a bug in the sqlite handling we were happily adding
folders with '(null') and it happened to work until now.

midori/midori-array.c

index ca8390de5ae4b4f3a942660f9e5e0d3b3f913d0b..5230d5863b66a62fec4305ddad305b0dcc42c866 100644 (file)
@@ -768,7 +768,7 @@ katze_item_set_value_from_column (sqlite3_stmt* stmt,
     {
         const unsigned char* uri;
         uri = sqlite3_column_text (stmt, column);
-        if (uri && uri[0])
+        if (uri && uri[0] && uri[0] != '(')
             katze_item_set_uri (item, (gchar*)uri);
     }
     else if (g_str_equal (name, "title") || g_str_equal (name, "name"))