ctl: Prevent clients from opening TS0

This doesn't work, as the mux_demux.c code doesn't pass the TS0 bitstream
to users anyway.  So let's reject clients attempting this.

Change-Id: Idb2d20da7de72dad38ae2fccdd7630677d0f0cc8
This commit is contained in:
Harald Welte 2022-11-01 17:01:48 +01:00
parent 64e1889f99
commit 5077657f57
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@
static struct e1_ts *
_e1d_get_ts(struct e1_line *line, uint8_t ts)
{
if (ts < 32)
if (ts > 0 && ts < 32)
return &line->ts[ts];
else if (ts == E1DP_TS_SUPERCHAN)
return &line->superchan;