sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit e077ebdc722204bf88072dad376fa1dbe9993c95
parent cdf017ceea0d09a6d5745c18cc0c8ae6232b49fa
Author: Daniel Lockyer <thisisdaniellockyer@gmail.com>
Date:   Fri, 29 Apr 2016 18:08:28 +0100

sway/config.c: res->input is a malloc'ed section which wasn't freed

Diffstat:
Msway/config.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/sway/config.c b/sway/config.c @@ -534,6 +534,7 @@ bool read_config(FILE *file, struct sway_config *config) { default:; } free(line); + free(res->input); free(res); }