mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-10 18:08:30 -04:00
AP_RCProtocol: fixed underflow wrap in GHST
This commit is contained in:
parent
0c3940563e
commit
2346cb6d81
@ -177,6 +177,12 @@ void AP_RCProtocol_GHST::_process_byte(uint32_t timestamp_us, uint8_t byte)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (_frame.length < 2) {
|
||||||
|
// invalid length, we subtract 2 below
|
||||||
|
_frame_ofs = 0;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
// decode whatever we got and expect
|
// decode whatever we got and expect
|
||||||
if (_frame_ofs == _frame.length + GHST_HEADER_LEN) {
|
if (_frame_ofs == _frame.length + GHST_HEADER_LEN) {
|
||||||
log_data(AP_RCProtocol::GHST, timestamp_us, (const uint8_t*)&_frame, _frame_ofs - GHST_HEADER_LEN);
|
log_data(AP_RCProtocol::GHST, timestamp_us, (const uint8_t*)&_frame, _frame_ofs - GHST_HEADER_LEN);
|
||||||
|
Loading…
Reference in New Issue
Block a user