]> spindle.queued.net Git - midori/commitdiff
Check absent 'version' in toplevel 'xbel' element
authorChristian Dywan <christian@twotoasts.de>
Fri, 2 Jul 2010 21:06:10 +0000 (23:06 +0200)
committerChristian Dywan <christian@twotoasts.de>
Fri, 2 Jul 2010 21:06:10 +0000 (23:06 +0200)
Albeit required, in pracise the 'version' value may be missing.

midori/midori-array.c

index 5230d5863b66a62fec4305ddad305b0dcc42c866..e3fec8b873e257ed9b0f667e68c55d18feddd1e7 100644 (file)
@@ -205,7 +205,7 @@ katze_array_from_xmlDocPtr (KatzeArray* array,
         gchar* value;
 
         value = (gchar*)xmlGetProp (cur, (xmlChar*)"version");
-        if (!katze_str_equal (value, "1.0"))
+        if (!value || !katze_str_equal (value, "1.0"))
             g_warning ("XBEL version is not 1.0.");
         g_free (value);