Merge pull request #2280 from ianyfan/leaks

Fix some memory leaks
This commit is contained in:
emersion 2018-07-15 22:09:04 +01:00 committed by GitHub
commit b314a8f2cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 0 deletions

View File

@ -17,6 +17,7 @@ struct cmd_results *bar_cmd_position(int argc, char **argv) {
if (strcasecmp(valid[i], argv[0]) == 0) {
wlr_log(WLR_DEBUG, "Setting bar position '%s' for bar: %s",
argv[0], config->current_bar->id);
free(config->current_bar->position);
config->current_bar->position = strdup(argv[0]);
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
}

View File

@ -474,6 +474,7 @@ static bool load_include_config(const char *path, const char *parent_dir,
list_del(config->config_chain, index);
return false;
}
free(real_path);
// restore current_config_path
config->current_config_path = parent_config;

View File

@ -207,6 +207,8 @@ void apply_output_config(struct output_config *oc, struct sway_container *output
output->sway_output->bg_pid = fork();
if (output->sway_output->bg_pid == 0) {
execvp(cmd[0], cmd);
} else {
free(command);
}
}
if (oc && oc->dpms_state != DPMS_IGNORE) {