Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
SAT>IP: Fix the UDP packet parser (issue#2212)
  • Loading branch information
perexg committed Aug 12, 2014
1 parent 0680bdb commit 81c08e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/input/mpegts/satip/satip.c
Expand Up @@ -869,7 +869,7 @@ satip_discovery_service_received
deviceid = argv[1];
else if (strcmp(argv[0], "USN") == 0) {
n = http_tokenize(argv[1], argv, ARRAY_SIZE(argv), ':');
for (i = 0; i < n+1; i++)
for (i = 0; i < n-1; i++)
if (argv[i] && strcmp(argv[i], "uuid") == 0) {
uuid = argv[++i];
break;
Expand Down

0 comments on commit 81c08e2

Please sign in to comment.