mirror of
https://github.com/swaywm/sway.git
synced 2024-11-13 05:54:11 +01:00
Merge pull request #1351 from Ongy/swaygrab-forking
fixes a hanging swaygrab
This commit is contained in:
commit
ec9a977fbb
@ -58,14 +58,19 @@ void grab_and_apply_magick(const char *file, const char *payload,
|
||||
if ((child = fork()) < 0) {
|
||||
sway_log(L_ERROR, "Swaygrab failed to fork.");
|
||||
exit(EXIT_FAILURE);
|
||||
} else if (child == 0) {
|
||||
} else if (child != 0) {
|
||||
close(fd[0]);
|
||||
write(fd[1], pixels, len);
|
||||
close(fd[1]);
|
||||
write(fd[0], pixels, len);
|
||||
free(pixels - 9);
|
||||
waitpid(child, NULL, 0);
|
||||
} else {
|
||||
close(fd[1]);
|
||||
if (dup2(fd[0], 0) != 0) {
|
||||
sway_log(L_ERROR, "Could not fdup the pipe");
|
||||
}
|
||||
close(fd[0]);
|
||||
execlp("convert", "-depth", "8", "-size", size, "rgba:-", "-flip", file, NULL);
|
||||
execlp("convert", "convert", "-depth", "8", "-size", size, "rgba:-", "-flip", file, NULL);
|
||||
sway_log(L_ERROR, "Swaygrab could not run convert.");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user