mirror of
https://github.com/PX4/PX4-Autopilot.git
synced 2026-06-06 16:49:51 +08:00
Revert "Removed text reuse, causing crash with stack trace"
This reverts commit 668d1b3301.
This commit is contained in:
@@ -220,11 +220,11 @@ mixer_handle_text(const void *buffer, size_t length)
|
||||
if (resid != mixer_text_length) {
|
||||
debug("used %u", mixer_text_length - resid);
|
||||
|
||||
// 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);
|
||||
/* 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);
|
||||
|
||||
// mixer_text_length = resid;
|
||||
mixer_text_length = resid;
|
||||
}
|
||||
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user