From a94dc8a51b14dd06419784d85bd87cfcd4ac5914 Mon Sep 17 00:00:00 2001 From: Andrew Wedgbury Date: Fri, 6 Sep 2013 08:29:12 +0000 Subject: [PATCH] compositor-x11: Copying xkb_info when creating a seat causes problems Sorry, I missed updating use of xkb_info in compositor-x11.c. I've updated the patch. --- src/compositor-x11.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compositor-x11.c b/src/compositor-x11.c index a896612..e04ea06 100644 --- a/src/compositor-x11.c +++ b/src/compositor-x11.c @@ -160,7 +160,7 @@ x11_compositor_get_keymap(struct x11_compositor *c) static uint32_t get_xkb_mod_mask(struct x11_compositor *c, uint32_t in) { - struct weston_xkb_info *info = &c->core_seat.xkb_info; + struct weston_xkb_info *info = c->core_seat.xkb_info; uint32_t ret = 0; if ((in & ShiftMask) && info->shift_mod != XKB_MOD_INVALID) -- 2.7.4