Re: [PATCH weston] input: Don't try to send pointer frames if no focus_client

2016-02-01 Thread Marek Chalupa
I ran into the same issue with gtk3-demo. When the popup was being destroyed, the focus was set to 0x0 and I got sigsegv, because popup grab tried to sent the frame. Reviewed-by: Marek Chalupa Regards, Marek On 01/29/2016 05:29 PM, Derek Foreman wrote: Prevents a

Re: [PATCH weston] input: Don't try to send pointer frames if no focus_client

2016-02-01 Thread Jonas Ådahl
On Mon, Feb 01, 2016 at 02:38:41PM +0100, Marek Chalupa wrote: > I ran into the same issue with gtk3-demo. > When the popup was being destroyed, the focus was set to 0x0 and I got > sigsegv, because popup grab tried to sent the frame. > > Reviewed-by: Marek Chalupa Pushed

[PATCH weston] input: Don't try to send pointer frames if no focus_client

2016-01-29 Thread Derek Foreman
Prevents a segfault when mousing into clients that don't get_pointer like weston-simple-shm and weston-simple-damage. Signed-off-by: Derek Foreman --- src/input.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/input.c b/src/input.c index 91813ec..2539fa7

Re: [PATCH weston] input: Don't try to send pointer frames if no focus_client

2016-01-29 Thread Jonas Ådahl
On Fri, Jan 29, 2016 at 10:29:46AM -0600, Derek Foreman wrote: > Prevents a segfault when mousing into clients that don't get_pointer > like weston-simple-shm and weston-simple-damage. > > Signed-off-by: Derek Foreman Reviewed-by: Jonas Ådahl This