wmii

git clone git://oldgit.suckless.org/wmii/
Log | Files | Refs | README | LICENSE

commit 19a83c25e7cc0a02842dc1848f15c0b64e2d9f40
parent c24f1dece9e6199bd2809910abd6e4273ba4fd64
Author: uriel <uriel@localhost.localdomain>
Date:   Thu, 15 Feb 2007 15:52:47 +0100

Fix crash on floating layer resizal

Diffstat:
mouse.c | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/mouse.c b/mouse.c @@ -413,8 +413,10 @@ do_mouse_resize(Client *c, Bool grabbox, BlitzAlign align) { }else map_client(c); - if(rects) + if(rects) { free(rects); + rects = nil; + } XUngrabPointer(blz.dpy, CurrentTime); XSync(blz.dpy, False);