descrambler: remove the extra (not required) condition < 0 for uint16_t
This commit is contained in:
parent
1b6c2275a6
commit
6a86c966f3
1 changed files with 1 additions and 1 deletions
|
@ -839,7 +839,7 @@ capmt_set_filter(capmt_t *capmt, int adapter, sbuf_t *sb, int offset)
|
|||
if (adapter >= MAX_CA ||
|
||||
demux_index >= MAX_INDEX ||
|
||||
filter_index >= MAX_FILTER ||
|
||||
(pid < 0 || pid > 8191))
|
||||
pid > 8191)
|
||||
return;
|
||||
cf = &capmt->capmt_demuxes.filters[demux_index];
|
||||
if (cf->max && cf->adapter != adapter)
|
||||
|
|
Loading…
Add table
Reference in a new issue