Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
iptv: fix unitialized variable eror (iptv_input_wizard_get)
  • Loading branch information
perexg committed Aug 18, 2016
1 parent be04ede commit 2c9c3ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/input/mpegts/iptv/iptv.c
Expand Up @@ -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))
Expand Down

0 comments on commit 2c9c3ad

Please sign in to comment.