sway/config: fix use-after-free for end of block

Introduced in 7c810dc344
This commit is contained in:
Dominique Martinet 2018-06-03 00:31:45 +09:00
parent df204b65d8
commit 71ab13f1eb
1 changed files with 4 additions and 4 deletions

View File

@ -626,13 +626,13 @@ bool read_config(FILE *file, struct sway_config *config) {
success = false;
break;
}
wlr_log(L_DEBUG, "Exiting block '%s'", block);
list_del(stack, 0);
free(block);
if (strcmp(block, "bar") == 0) {
config->current_bar = NULL;
}
wlr_log(L_DEBUG, "Exiting block '%s'", block);
list_del(stack, 0);
free(block);
memset(&config->handler_context, 0,
sizeof(config->handler_context));
default:;