gst_mpd_client_fetch_on_load_external_resources() never ever return
FALSE due to modified external xml loading functions.
https://bugzilla.gnome.org/show_bug.cgi?id=774463
}
}
-static gboolean
+static void
gst_mpd_client_fetch_on_load_external_resources (GstMpdClient * client)
{
GList *l;
l = l->next;
}
-
- return TRUE;
-
-syntax_error:
-
- return FALSE;
}
gboolean
if (ret) {
gst_mpd_client_check_profiles (client);
-
- if (!gst_mpd_client_fetch_on_load_external_resources (client))
- return FALSE;
+ gst_mpd_client_fetch_on_load_external_resources (client);
}
}