Re: [PATCH] xwm: Fix memory leak

2018-03-20 Thread Scott Moreau
Hi Pekka, On Tue, Mar 20, 2018 at 2:21 AM, Pekka Paalanen wrote: > On Mon, 19 Mar 2018 18:06:03 -0600 > Scott Moreau wrote: > > > Fix memory leak introduced by 6b58ea8c. weston_wm_handle_icon() was > > calling xcb_get_property_reply() without freeing the reply. > > --- > > xwayland/window-mana

Re: [PATCH] xwm: Fix memory leak

2018-03-20 Thread Pekka Paalanen
On Mon, 19 Mar 2018 18:06:03 -0600 Scott Moreau wrote: > Fix memory leak introduced by 6b58ea8c. weston_wm_handle_icon() was > calling xcb_get_property_reply() without freeing the reply. > --- > xwayland/window-manager.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/xwayland/window

[PATCH] xwm: Fix memory leak

2018-03-19 Thread Scott Moreau
Fix memory leak introduced by 6b58ea8c. weston_wm_handle_icon() was calling xcb_get_property_reply() without freeing the reply. --- xwayland/window-manager.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/xwayland/window-manager.c b/xwayland/window-manager.c index c307e19..24e7213 100644 --