fixes to cmd queue freeing, style

This commit is contained in:
Luminarys 2015-08-13 13:22:20 -05:00
parent 9a0a858d1e
commit 527288a826
3 changed files with 3 additions and 4 deletions

View File

@ -229,8 +229,7 @@ static bool cmd_set(struct sway_config *config, int argc, char **argv) {
static bool _do_split(struct sway_config *config, int argc, char **argv, int layout) {
char *name = layout == L_VERT ? "splitv":
layout == L_HORIZ ? "splith":
"split";
layout == L_HORIZ ? "splith":"split";
if (!checkarg(argc, name, EXPECTED_EQUAL_TO, 0)) {
return false;
}

View File

@ -77,7 +77,7 @@ struct sway_config *read_config(FILE *file, bool is_active) {
char *cmd = malloc(strlen(line) + 1);
strcpy(cmd, line);
list_add(config->cmd_queue, cmd);
}else if (!temp_depth && !handle_command(config, line)) {
} else if (!temp_depth && !handle_command(config, line)) {
sway_log(L_DEBUG, "Config load failed for line %s", line);
success = false;
}

View File

@ -169,7 +169,7 @@ static void handle_wlc_ready(void) {
for (i = 0; i < config->cmd_queue->length; ++i) {
handle_command(config, config->cmd_queue->items[i]);
}
list_free(config->cmd_queue);
free_flat_list(config->cmd_queue);
}