applied XGetWMNormalHints fix - dwm - dynamic window manager
 (HTM) git clone https://git.parazyd.org/dwm
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 83abfc05eb5a1e6ee762ce2921d9d5270e40c9ee
 (DIR) parent 862b0d541d76fb350bff36a2fef5f6ab02625d02
 (HTM) Author: Anselm R Garbe <garbeam@gmail.com>
       Date:   Sun,  7 Sep 2008 09:53:59 +0100
       
       applied XGetWMNormalHints fix
       Diffstat:
         M dwm.c                               |       4 +++-
       
       1 file changed, 3 insertions(+), 1 deletion(-)
       ---
 (DIR) diff --git a/dwm.c b/dwm.c
       @@ -1590,7 +1590,9 @@ updatesizehints(Client *c) {
                long msize;
                XSizeHints size;
        
       -        XGetWMNormalHints(dpy, c->win, &size, &msize);
       +        if(!XGetWMNormalHints(dpy, c->win, &size, &msize))
       +                /* size is uninitialized, ensure that size.flags aren't used */
       +                size.flags = PSize; 
                if(size.flags & PBaseSize) {
                        c->basew = size.base_width;
                        c->baseh = size.base_height;