mirror of
https://github.com/swaywm/sway.git
synced 2024-11-18 05:59:15 +00:00
Fix memory leak in title_format command
This commit is contained in:
parent
228c478e8d
commit
d10a0a8c41
|
@ -23,7 +23,7 @@ struct cmd_results *cmd_title_format(int argc, char **argv) {
|
||||||
if (view->title_format) {
|
if (view->title_format) {
|
||||||
free(view->title_format);
|
free(view->title_format);
|
||||||
}
|
}
|
||||||
view->title_format = strdup(format);
|
view->title_format = format;
|
||||||
view_update_title(view, true);
|
view_update_title(view, true);
|
||||||
config_find_font_height(true);
|
config_find_font_height(true);
|
||||||
arrange_root();
|
arrange_root();
|
||||||
|
|
Loading…
Reference in a new issue