Stupid logic error I had previously fixed and obviously not committed. Fixes #1219.

This commit is contained in:
Adam Sutton 2012-09-12 14:25:43 +01:00
parent bae7aaa7d6
commit b5263ac111

View file

@ -454,7 +454,7 @@ dvb_sdt_callback(th_dvb_mux_instance_t *tdmi, uint8_t *ptr, int len,
th_dvb_adapter_t *tda = tdmi->tdmi_adapter;
if (tableid != 0x42 || tableid != 0x46) return -1;
if (tableid != 0x42 && tableid != 0x46) return -1;
if(len < 8) return -1;