mirror of
https://github.com/swaywm/sway.git
synced 2024-11-13 14:04:11 +01:00
Escape spaces in background file path
This commit is contained in:
parent
0b64cce733
commit
1cf737489d
@ -63,6 +63,12 @@ struct cmd_results *output_cmd_background(int argc, char **argv) {
|
|||||||
|
|
||||||
wordexp_t p;
|
wordexp_t p;
|
||||||
char *src = join_args(argv, j);
|
char *src = join_args(argv, j);
|
||||||
|
while (strstr(src, " ")) {
|
||||||
|
src = realloc(src, strlen(src) + 2);
|
||||||
|
char *ptr = strstr(src, " ") + 1;
|
||||||
|
memmove(ptr + 1, ptr, strlen(ptr) + 1);
|
||||||
|
*ptr = '\\';
|
||||||
|
}
|
||||||
if (wordexp(src, &p, 0) != 0 || p.we_wordv[0] == NULL) {
|
if (wordexp(src, &p, 0) != 0 || p.we_wordv[0] == NULL) {
|
||||||
struct cmd_results *cmd_res = cmd_results_new(CMD_INVALID, "output",
|
struct cmd_results *cmd_res = cmd_results_new(CMD_INVALID, "output",
|
||||||
"Invalid syntax (%s)", src);
|
"Invalid syntax (%s)", src);
|
||||||
|
Loading…
Reference in New Issue
Block a user