[PATCH] ivi-shell: SEGV occurs when multi touch happens in transition

Nobuhiko Tanibata NOBUHIKO_TANIBATA at xddp.denso.co.jp
Thu Feb 5 23:08:52 PST 2015


of application launching. This is because cancel callback is mistakenly
set to weston_touch_grab_interface. To fix this issue, add a
callback, touch_move_workspace_grab_frame and set it to the
weston_touch_grab_interface like desktop-shell.

Signed-off-by: Nobuhiko Tanibata <NOBUHIKO_TANIBATA at xddp.denso.co.jp>
---
 ivi-shell/hmi-controller.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/ivi-shell/hmi-controller.c b/ivi-shell/hmi-controller.c
index 36a1b56..2d15e06 100644
--- a/ivi-shell/hmi-controller.c
+++ b/ivi-shell/hmi-controller.c
@@ -1389,6 +1389,11 @@ pointer_move_workspace_grab_cancel(struct weston_pointer_grab *grab)
 }
 
 static void
+touch_move_workspace_grab_frame(struct weston_touch_grab *grab)
+{
+}
+
+static void
 touch_move_workspace_grab_cancel(struct weston_touch_grab *grab)
 {
 	struct touch_grab *tg = (struct touch_grab *)grab;
@@ -1408,6 +1413,7 @@ static const struct weston_touch_grab_interface touch_move_grab_workspace_interf
 	touch_nope_grab_down,
 	touch_move_workspace_grab_up,
 	touch_move_grab_motion,
+	touch_move_workspace_grab_frame,
 	touch_move_workspace_grab_cancel
 };
 
-- 
1.8.3.1



More information about the wayland-devel mailing list