e1inp_line_ipa_rsl_ts(): Return null instead of reading out of bounds

Change-Id: Ic382ab509e4541124f36df153e4b247d9cba35c5
diff --git a/include/osmocom/abis/e1_input.h b/include/osmocom/abis/e1_input.h
index 0daf792..91a71e1 100644
--- a/include/osmocom/abis/e1_input.h
+++ b/include/osmocom/abis/e1_input.h
@@ -229,7 +229,7 @@
 	int pcap_fd;
 };
 #define e1inp_line_ipa_oml_ts(line) (&line->ts[0])
-#define e1inp_line_ipa_rsl_ts(line, trx_id) (&line->ts[1 + (trx_id)])
+#define e1inp_line_ipa_rsl_ts(line, trx_id) (((1 + (trx_id)) < NUM_E1_TS) ? (&line->ts[1 + (trx_id)]) : NULL)
 
 /* SS_L_INPUT signals */
 enum e1inp_signal_input {