aboutsummaryrefslogtreecommitdiff
path: root/backend
diff options
context:
space:
mode:
authoremersion <contact@emersion.fr>2018-11-27 23:18:12 +0100
committeremersion <contact@emersion.fr>2018-11-27 23:18:12 +0100
commit408e2a77e9fe49b6753261e8e96d80fd579571c0 (patch)
tree762285a6c5eae5da7ee5cd6fe26990fa1c6d31ad /backend
parent05bb44078667a11216611a8fbe87c5fe69e117f8 (diff)
backend/wayland: fix zero-length VLA
Diffstat (limited to 'backend')
-rw-r--r--backend/wayland/wl_seat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/wayland/wl_seat.c b/backend/wayland/wl_seat.c
index c4098987..b654197a 100644
--- a/backend/wayland/wl_seat.c
+++ b/backend/wayland/wl_seat.c
@@ -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 pressed[dev->keyboard->num_keycodes];
+ uint32_t pressed[dev->keyboard->num_keycodes + 1];
memcpy(pressed, dev->keyboard->keycodes,
dev->keyboard->num_keycodes * sizeof(uint32_t));