media-export: fix crash if nothing was configured
authorJens Georg <mail@jensge.org>
Tue, 16 Jun 2009 18:16:39 +0000 (20:16 +0200)
committerZeeshan Ali (Khattak) <zeeshanak@gnome.org>
Wed, 17 Jun 2009 12:17:46 +0000 (15:17 +0300)
src/plugins/media-export/rygel-media-export-root-container.vala

index 5ac3ad5..1f6ca2c 100644 (file)
@@ -89,14 +89,21 @@ public class Rygel.MediaExportRootContainer : MediaContainer {
      */
     public MediaExportRootContainer () {
         base.root ("MediaExportRoot", 0);
+        ArrayList<string> uris;
 
         this.children = new ArrayList<MediaExportContainer> ();
 
         var config = Rygel.MetaConfig.get_default ();
-        var uris = config.get_string_list ("MediaExport", "uris");
+
+        try {
+            uris = config.get_string_list ("MediaExport", "uris");
+        } catch (Error error) {
+            uris = new ArrayList<string> ();
+        }
 
         // either an error occured or the gconf key is not set
         if (uris.size == 0) {
+            debug("Nothing configured, using XDG special directories");
             var uri = Environment.get_user_special_dir (UserDirectory.MUSIC);
             if (uri != null)
                 uris.add (uri);