Fix for issue #7054 by avoiding recursive calls to websocket_background.

This commit is contained in:
root 2023-03-08 13:09:45 -06:00
parent 9c0165f18d
commit 59f56a438a

View File

@ -52,6 +52,8 @@ typedef struct {
// interrupt character. // interrupt character.
STATIC ringbuf_t _incoming_ringbuf; STATIC ringbuf_t _incoming_ringbuf;
STATIC uint8_t _buf[16]; STATIC uint8_t _buf[16];
// make sure background is not called recursively
STATIC bool in_web_background = false;
static _websocket cp_serial; static _websocket cp_serial;
@ -244,6 +246,10 @@ void websocket_background(void) {
if (!websocket_connected()) { if (!websocket_connected()) {
return; return;
} }
if (in_web_background) {
return;
}
in_web_background = true;
uint8_t c; uint8_t c;
while (ringbuf_num_empty(&_incoming_ringbuf) > 0 && while (ringbuf_num_empty(&_incoming_ringbuf) > 0 &&
_read_next_payload_byte(&c)) { _read_next_payload_byte(&c)) {
@ -253,4 +259,5 @@ void websocket_background(void) {
} }
ringbuf_put(&_incoming_ringbuf, c); ringbuf_put(&_incoming_ringbuf, c);
} }
in_web_background = false;
} }