You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by Jim Jagielski <ji...@hyperreal.com> on 1997/06/16 20:42:49 UTC

cvs commit: apache/src alloc.c

jim         97/06/16 11:42:48

  Modified:    src       alloc.c
  Log:
  Make clear when we exit and why
  
  Revision  Changes    Path
  1.32      +1 -1      apache/src/alloc.c
  
  Index: alloc.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/alloc.c,v
  retrieving revision 1.31
  retrieving revision 1.32
  diff -C3 -r1.31 -r1.32
  *** alloc.c	1997/06/16 17:53:12	1.31
  --- alloc.c	1997/06/16 18:42:47	1.32
  ***************
  *** 1187,1193 ****
        signal (SIGCHLD, SIG_DFL);	/* Was that it? */
        
        func (data);
  !     exit (1);			/* Should never get here... */
      }
    
      /* Parent process */
  --- 1187,1193 ----
        signal (SIGCHLD, SIG_DFL);	/* Was that it? */
        
        func (data);
  !     exit (1);		/* Should only get here if the exec in func() failed */
      }
    
      /* Parent process */