AP_ESC_Telem: fix out of bound access

This commit is contained in:
Pierre Kancir 2021-08-10 17:41:16 +02:00 committed by Peter Barker
parent b399649c36
commit a0175441a0
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ public:
// return the last time telemetry data was received in ms for the given ESC or 0 if never
uint32_t get_last_telem_data_ms(uint8_t esc_index) const {
if (esc_index > ESC_TELEM_MAX_ESCS) return 0;
if (esc_index >= ESC_TELEM_MAX_ESCS) {return 0;}
return _telem_data[esc_index].last_update_ms;
}