Don't free in vfork

This commit is contained in:
Roy Marples 2007-04-21 08:34:16 +00:00
parent 3979a1712d
commit 81c595b3fe

View File

@ -472,9 +472,7 @@ static pid_t _exec_service (const char *service, const char *arg)
execl (file, file, arg, (char *) NULL);
e = errno;
unlink (fifo);
free (fifo);
eerror ("unable to exec `%s': %s", file, strerror (errno));
free (file);
_exit (EXIT_FAILURE);
}