mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 11:55:59 +01:00
backend/wayland: fix zero-length VLA
This commit is contained in:
parent
05bb440786
commit
408e2a77e9
1 changed files with 1 additions and 1 deletions
|
@ -203,7 +203,7 @@ static void keyboard_handle_leave(void *data, struct wl_keyboard *wl_keyboard,
|
||||||
|
|
||||||
uint32_t time = get_current_time_msec();
|
uint32_t time = get_current_time_msec();
|
||||||
|
|
||||||
uint32_t pressed[dev->keyboard->num_keycodes];
|
uint32_t pressed[dev->keyboard->num_keycodes + 1];
|
||||||
memcpy(pressed, dev->keyboard->keycodes,
|
memcpy(pressed, dev->keyboard->keycodes,
|
||||||
dev->keyboard->num_keycodes * sizeof(uint32_t));
|
dev->keyboard->num_keycodes * sizeof(uint32_t));
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue