]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
dvbpsi: fix the freesat bouquet update (inverted condition), fixes #5572
authorJaroslav Kysela <perex@perex.cz>
Sun, 24 Mar 2019 19:43:49 +0000 (20:43 +0100)
committerJaroslav Kysela <perex@perex.cz>
Thu, 28 Mar 2019 16:28:44 +0000 (17:28 +0100)
src/input/mpegts/dvb_psi.c

index 257d5f1dbf4acaee9c198c1b438daa1bfb8e799a..66f82fd8034414b40d28ec47694ee2d1ffb4d579 100644 (file)
@@ -718,7 +718,7 @@ dvb_freesat_completed
           continue;
         }
         /* already assigned? skip it */
-        if (TAILQ_SAFE_ENTRY(fs, region_link))
+        if (!TAILQ_SAFE_ENTRY(fs, region_link))
           continue;
         LIST_FOREACH(fr, &bi->fregions, link)
           if (fr->regionid == fs->regionid)