From 46b1d6ef1e3a45a4ce8b3f5d3c4f9631e793e785 Mon Sep 17 00:00:00 2001 From: okan Date: Thu, 2 Jan 2014 20:58:20 +0000 Subject: [PATCH] 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@ --- client.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/client.c b/client.c index 1fa88a0..6cf68e4 100644 --- a/client.c +++ b/client.c @@ -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