Fix snprintf compiler warning

This commit is contained in:
Muhamed Hobi 2022-02-07 19:03:54 -05:00 committed by Simon Ser
parent 9a6687ee04
commit ac7892371c
2 changed files with 2 additions and 2 deletions

View file

@ -112,7 +112,7 @@ struct cmd_results *output_cmd_background(int argc, char **argv) {
"Unable to allocate resources");
}
sprintf(src, "%s/%s", conf_path, rel_path);
snprintf(src, strlen(conf_path) + strlen(src) + 2, "%s/%s", conf_path, rel_path);
free(rel_path);
free(conf);
}