Skip to content

Commit

Permalink
clipmenud: Prevent clipserve stuck on wait()
Browse files Browse the repository at this point in the history
  • Loading branch information
cdown committed Apr 11, 2024
1 parent 510b427 commit d80842e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/clipmenud.c
Original file line number Diff line number Diff line change
Expand Up @@ -404,6 +404,7 @@ int main(void) {
sigprocmask(SIG_BLOCK, &mask, NULL);
sig_fd = signalfd(-1, &mask, 0);
expect(sig_fd >= 0);
expect(signal(SIGCHLD, SIG_IGN) != SIG_ERR);

int unused;
die_on(!XFixesQueryExtension(dpy, &evt_base, &unused), "XFixes missing\n");
Expand Down

0 comments on commit d80842e

Please sign in to comment.