]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
iptv: fix unitialized variable eror (iptv_input_wizard_get)
authorJaroslav Kysela <perex@perex.cz>
Thu, 18 Aug 2016 14:16:21 +0000 (16:16 +0200)
committerJaroslav Kysela <perex@perex.cz>
Thu, 18 Aug 2016 14:16:21 +0000 (16:16 +0200)
src/input/mpegts/iptv/iptv.c

index 55102966b992c082d2595f3707721922ebdebd42..d59f09aa0b24af5500278bd505aad11224878b44 100644 (file)
@@ -1049,7 +1049,7 @@ iptv_input_wizard_get( tvh_input_t *ti, const char *lang )
 {
   iptv_input_t *mi = (iptv_input_t*)ti;
   mpegts_network_t *mn;
-  const idclass_t *idc;
+  const idclass_t *idc = NULL;
 
   mn = iptv_input_wizard_network(mi);
   if (mn == NULL || (mn && mn->mn_wizard))