URI: 
       reviewed util.c - dwm - dynamic window manager
  HTML git clone https://git.parazyd.org/dwm
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 423093256363aa3d8034bff5c2be38adb7e9cf25
   DIR parent f17e898bd133f1bd8c530116b4b5bacb7ced5da9
  HTML Author: arg@mmvi <unknown>
       Date:   Wed, 20 Sep 2006 09:49:32 +0200
       
       reviewed util.c
       Diffstat:
         M util.c                              |       3 ++-
       
       1 file changed, 2 insertions(+), 1 deletion(-)
       ---
   DIR diff --git a/util.c b/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)