diff options
author | okan | 2014-01-02 20:58:20 +0000 |
---|---|---|
committer | okan | 2014-01-02 20:58:20 +0000 |
commit | 6a40eff8ae4a2b0ff999aa5e201e06c76bac181b (patch) | |
tree | 74529fe738d65eb7503e5adab91e37e5c195ea01 | |
parent | bf4effc9e59ee91f448e17c89c04b5e23944541d (diff) | |
download | cwm-6a40eff8ae4a2b0ff999aa5e201e06c76bac181b.tar.gz |
When a client doesn't specify size hints, nothing prevents a resize to
0x0 - don't allow this situation during mouse resize (check already in
place for kbd resize).
Reported by brynet@
-rw-r--r-- | client.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -15,7 +15,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $OpenBSD: client.c,v 1.165 2013/12/17 16:10:43 okan Exp $ + * $OpenBSD: client.c,v 1.166 2014/01/02 20:58:20 okan Exp $ */ #include <sys/param.h> @@ -832,6 +832,9 @@ client_applysizehints(struct client_ctx *cc) cc->geom.w = MIN(cc->geom.w, cc->hint.maxw); if (cc->hint.maxh) cc->geom.h = MIN(cc->geom.h, cc->hint.maxh); + + cc->geom.w = MAX(cc->geom.w, 1); + cc->geom.h = MAX(cc->geom.h, 1); } static void |