sway

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

commit d10a0a8c4156fef6ac64362bf046411f57a3ed5f
parent 228c478e8d11dd14972b237574146fd0d2d6b96c
Author: Ryan Dwyer <ryandwyer1@gmail.com>
Date:   Sat,  5 May 2018 16:48:10 +1000

Fix memory leak in title_format command

Diffstat:
Msway/commands/title_format.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sway/commands/title_format.c b/sway/commands/title_format.c @@ -23,7 +23,7 @@ struct cmd_results *cmd_title_format(int argc, char **argv) { if (view->title_format) { free(view->title_format); } - view->title_format = strdup(format); + view->title_format = format; view_update_title(view, true); config_find_font_height(true); arrange_root();