potential crash fix if xinerama behaves broken, though I doubt it
This commit is contained in:
parent
78f0f8595f
commit
6fad4c49f1
1 changed files with 1 additions and 2 deletions
3
dwm.c
3
dwm.c
|
@ -1562,8 +1562,7 @@ updategeom(void) {
|
|||
XineramaScreenInfo *info = NULL;
|
||||
|
||||
/* window area geometry */
|
||||
if(XineramaIsActive(dpy)) {
|
||||
info = XineramaQueryScreens(dpy, &n);
|
||||
if(XineramaIsActive(dpy) && (info = XineramaQueryScreens(dpy, &n))) {
|
||||
if(n > 1) {
|
||||
int di, x, y;
|
||||
unsigned int dui;
|
||||
|
|
Loading…
Reference in a new issue