Browse Source

die if malloc sizeof(Monitor) fails

master
Anselm R Garbe 15 years ago
parent
commit
61c3095f2f
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      dwm.c

+ 2
- 1
dwm.c View File

@ -1693,7 +1693,8 @@ updategeom(void) {
#endif /* XINERAMA */
/* allocate monitor(s) for the new geometry setup */
for(i = 0; i < n; i++) {
m = (Monitor *)malloc(sizeof(Monitor));
if(!(m = (Monitor *)malloc(sizeof(Monitor))))
die("fatal: could not malloc() %u bytes\n", sizeof(Monitor));
m->next = newmons;
newmons = m;
}


Loading…
Cancel
Save