From db52de8151bc0a4f1c24abc42fcaef8ae2c6505d Mon Sep 17 00:00:00 2001 From: Jaroslav Kysela Date: Thu, 19 Mar 2015 21:29:54 +0100 Subject: [PATCH] SAT>IP Client: XML - make manufacturerURL tag optional --- src/input/mpegts/satip/satip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/input/mpegts/satip/satip.c b/src/input/mpegts/satip/satip.c index 77770508..737a1683 100644 --- a/src/input/mpegts/satip/satip.c +++ b/src/input/mpegts/satip/satip.c @@ -744,7 +744,7 @@ satip_discovery_http_closed(http_client_t *hc, int errn) if ((manufacturer = htsmsg_xml_get_cdata_str(device, "manufacturer")) == NULL) goto finish; if ((manufacturerURL = htsmsg_xml_get_cdata_str(device, "manufacturerURL")) == NULL) - goto finish; + manufacturerURL = ""; if ((modeldesc = htsmsg_xml_get_cdata_str(device, "modelDescription")) == NULL) modeldesc = ""; if ((modelname = htsmsg_xml_get_cdata_str(device, "modelName")) == NULL)