Fix some errors with config loading

This commit is contained in:
Drew DeVault 2015-08-10 15:45:36 -04:00
parent accde8343b
commit 54374d81b5
2 changed files with 5 additions and 2 deletions

View file

@ -368,5 +368,8 @@ int handle_command(struct sway_config *config, char *exec) {
free(argv[i]);
}
free(argv);
if (ret != 0) {
sway_log(L_ERROR, "Command failed: %s", cmd);
}
return ret;
}