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