Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
satip.c - fix build error (uninitialized variable)
  • Loading branch information
perexg committed May 6, 2015
1 parent 8df8250 commit 56b700b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/input/mpegts/satip/satip.c
Expand Up @@ -485,7 +485,7 @@ satip_device_create( satip_device_info_t *info )
save = !conf || !feconf;

n = http_tokenize(sd->sd_info.tunercfg, argv, 10, ',');
for (i = 0, fenum = 1; i < n; i++) {
for (i = m = 0, fenum = 1; i < n; i++) {
type = DVB_TYPE_NONE;
v2 = 0;
if (strncmp(argv[i], "DVBS2-", 6) == 0) {
Expand Down

0 comments on commit 56b700b

Please sign in to comment.