mirror of https://github.com/ArduPilot/ardupilot
AP_ESC_Telem: fix out of bound access
This commit is contained in:
parent
b399649c36
commit
a0175441a0
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue