weston-terminal: Make exit path a little more obvious

Signed-off-by: Daniel Stone <daniels@collabora.com>
This commit is contained in:
Daniel Stone 2022-06-24 12:45:11 +01:00
parent f9e54ab2f8
commit fc4fb9fb92

View File

@ -3054,10 +3054,12 @@ io_handler(struct task *task, uint32_t events)
}
len = read(terminal->master, buffer, sizeof buffer);
if (len < 0)
if (len < 0) {
terminal_destroy(terminal);
else
terminal_data(terminal, buffer, len);
return;
}
terminal_data(terminal, buffer, len);
}
static int