mirror of
https://github.com/NickHu/sway
synced 2024-12-28 22:23:30 +01:00
Fix memory leak in config.c
Thanks @jollywho
This commit is contained in:
parent
ac740271a5
commit
d969a1dec0
1 changed files with 1 additions and 0 deletions
|
@ -285,6 +285,7 @@ bool read_config(FILE *file, bool is_active) {
|
|||
line_number++;
|
||||
line = strip_whitespace(line);
|
||||
if (line[0] == '#') {
|
||||
free(line);
|
||||
continue;
|
||||
}
|
||||
struct cmd_results *res = config_command(line, block);
|
||||
|
|
Loading…
Reference in a new issue