31 lines
834 B
Diff
31 lines
834 B
Diff
|
From a3d8c086d54c112fecfa2b9026a32a14f741f5f5 Mon Sep 17 00:00:00 2001
|
||
|
From: Jeremy Devenport <jeremy.devenport@gmail.com>
|
||
|
Date: Tue, 31 May 2016 03:09:24 -0400
|
||
|
Subject: [PATCH 2/2] * main.c (main): [SV 48009] Reset stack limit for make
|
||
|
re-exec.
|
||
|
|
||
|
Copyright-paperwork-exempt: yes
|
||
|
---
|
||
|
main.c | 5 +++++
|
||
|
1 file changed, 5 insertions(+)
|
||
|
|
||
|
diff --git a/main.c b/main.c
|
||
|
index e606488..fa8045f 100644
|
||
|
--- a/main.c
|
||
|
+++ b/main.c
|
||
|
@@ -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);
|
||
|
--
|
||
|
2.8.3
|
||
|
|