Merge pull request #3587 from RedSoxFan/fix-background-missing-file

output_cmd_background: fix no file + valid mode
This commit is contained in:
Drew DeVault 2019-02-05 22:09:59 +01:00 committed by GitHub
commit a3c5314856
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

View file

@ -258,6 +258,9 @@ int unescape_string(char *string) {
}
char *join_args(char **argv, int argc) {
if (!sway_assert(argc > 0, "argc should be positive")) {
return NULL;
}
int len = 0, i;
for (i = 0; i < argc; ++i) {
len += strlen(argv[i]) + 1;

View file

@ -61,6 +61,9 @@ struct cmd_results *output_cmd_background(int argc, char **argv) {
return cmd_results_new(CMD_INVALID,
"Missing background scaling mode.");
}
if (j == 0) {
return cmd_results_new(CMD_INVALID, "Missing background file");
}
wordexp_t p = {0};
char *src = join_args(argv, j);