mirror of
https://github.com/swaywm/sway.git
synced 2024-11-22 16:01:27 +00:00
Avoid unecessary string copy
This commit is contained in:
parent
a55472c6d8
commit
9e8866ae20
|
@ -16,12 +16,12 @@ struct cmd_results *cmd_font(int argc, char **argv) {
|
||||||
if (strncmp(font, "pango:", 6) == 0) {
|
if (strncmp(font, "pango:", 6) == 0) {
|
||||||
config->pango_markup = true;
|
config->pango_markup = true;
|
||||||
config->font = strdup(font + 6);
|
config->font = strdup(font + 6);
|
||||||
|
free(font);
|
||||||
} else {
|
} else {
|
||||||
config->pango_markup = false;
|
config->pango_markup = false;
|
||||||
config->font = strdup(font);
|
config->font = font;
|
||||||
}
|
}
|
||||||
|
|
||||||
free(font);
|
|
||||||
config_update_font_height();
|
config_update_font_height();
|
||||||
return cmd_results_new(CMD_SUCCESS, NULL);
|
return cmd_results_new(CMD_SUCCESS, NULL);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue