Browse Source

add an additional check in resize() to prevent a crash of dwm

master
Anselm R. Garbe 18 years ago
parent
commit
06f9f346e6
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      client.c

+ 3
- 1
client.c View File

@ -233,7 +233,7 @@ resize(Client *c, int x, int y, int w, int h, Bool sizehints) {
if(w <= 0 || h <= 0)
return;
if(sizehints) {
if(c->minay > 0 && c->maxay && (h - c->baseh) > 0) {
if(c->minay > 0 && c->maxay > 0 && (h - c->baseh) > 0) {
dx = (float)(w - c->basew);
dy = (float)(h - c->baseh);
min = (float)(c->minax) / (float)(c->minay);
@ -267,6 +267,8 @@ resize(Client *c, int x, int y, int w, int h, Bool sizehints) {
if(c->inch)
h -= (h - c->baseh) % c->inch;
}
if(w <= 0 || h <= 0)
return;
if(w == sw && h == sh)
c->border = 0;
else


Loading…
Cancel
Save