mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2025-02-02 20:08:29 +00:00
ipc: zero initialize message buffer
This commit is contained in:
parent
a24551b24b
commit
f76b31795f
|
@ -75,7 +75,7 @@ client_loop(volatile struct ipc_client_state *ics)
|
|||
return;
|
||||
}
|
||||
|
||||
uint8_t buf[IPC_BUF_SIZE];
|
||||
uint8_t buf[IPC_BUF_SIZE] = {0};
|
||||
|
||||
while (ics->server->running) {
|
||||
const int half_a_second_ms = 500;
|
||||
|
|
Loading…
Reference in a new issue