Remember to reset escape sequence after slip escape completed.

pull/1366/head
Fredrik Öhrström 2024-09-25 08:52:28 +02:00
rodzic 26ebbb08c7
commit b8f4a9457d
1 zmienionych plików z 1 dodań i 0 usunięć

Wyświetl plik

@ -2011,6 +2011,7 @@ void removeSlipFraming(vector<uchar>& from, size_t *frame_length, vector<uchar>
}
else if (esc)
{
esc = false;
if (c == SLIP_ESC_END) to.push_back(SLIP_END);
else if (c == SLIP_ESC_ESC) to.push_back(SLIP_ESC);
else to.push_back(c); // This is an error......