mirror of
git://git.suckless.org/dwm
synced 2025-08-02 21:22:11 -07:00
reviewed util.c
This commit is contained in:
3
util.c
3
util.c
@@ -47,7 +47,8 @@ spawn(Arg *arg) {
|
||||
|
||||
if(!arg->cmd)
|
||||
return;
|
||||
/* the double-fork construct avoids zombie processes */
|
||||
/* The double-fork construct avoids zombie processes and keeps the code
|
||||
* clean from stupid signal handlers. */
|
||||
if(fork() == 0) {
|
||||
if(fork() == 0) {
|
||||
if(dpy)
|
||||
|
Reference in New Issue
Block a user