mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-14 10:07:39 +08:00
PX4IO: Fix mixer load corner case in string termination
This commit is contained in:
parent
6927fcb5c0
commit
1155a4725b
@ -533,6 +533,8 @@ mixer_handle_text(const void *buffer, size_t length)
|
||||
/* copy any leftover text to the base of the buffer for re-use */
|
||||
if (resid > 0) {
|
||||
memcpy(&mixer_text[0], &mixer_text[mixer_text_length - resid], resid);
|
||||
/* enforce null termination */
|
||||
mixer_text[resid] = '\0';
|
||||
}
|
||||
|
||||
mixer_text_length = resid;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user