aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/alloca/needstack.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/alloca/needstack.c b/src/alloca/needstack.c
index b75eb02..f522eef 100644
--- a/src/alloca/needstack.c
+++ b/src/alloca/needstack.c
@@ -66,7 +66,7 @@ int stack_will_overflow(intptr_t n)
if (sigprocmask(SIG_SETMASK, &old_mask, NULL))
return 1;
- if (signal(SIGSEGV, Sold_sigsegv_handler) == SIG_ERR)
+ if (signal(SIGSEGV, old_sigsegv_handler) == SIG_ERR)
return 1;
}