mirror of
https://github.com/swaywm/sway.git
synced 2024-12-29 00:16:22 +01:00
Merge pull request #3587 from RedSoxFan/fix-background-missing-file
output_cmd_background: fix no file + valid mode
This commit is contained in:
commit
a3c5314856
2 changed files with 6 additions and 0 deletions
|
@ -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;
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue