* main.c (main): [SV 48009] Reset stack limit for make re-exec.

Copyright-paperwork-exempt: yes
This commit is contained in:
Jeremy Devenport 2016-05-31 03:09:24 -04:00 committed by Paul Smith
parent 4762480ae9
commit a3d8c086d5

5
main.c
View file

@ -2454,6 +2454,11 @@ main (int argc, char **argv, char **envp)
exit (WIFEXITED(r) ? WEXITSTATUS(r) : EXIT_FAILURE);
}
#else
#ifdef SET_STACK_SIZE
/* Reset limits, if necessary. */
if (stack_limit.rlim_cur)
setrlimit (RLIMIT_STACK, &stack_limit);
#endif
exec_command ((char **)nargv, environ);
#endif
free (aargv);