diff options
Diffstat (limited to 'nptl/allocatestack.c')
-rw-r--r-- | nptl/allocatestack.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/nptl/allocatestack.c b/nptl/allocatestack.c index 94d4525ff0..1a4bf44367 100644 --- a/nptl/allocatestack.c +++ b/nptl/allocatestack.c @@ -465,8 +465,7 @@ allocate_stack (const struct pthread_attr *attr, struct pthread **pdp, 0)) { /* The old guard area is too large. */ - if (mprotect ((char *) mem + guardsize, - pd->guardsize - guardsize, + if (mprotect ((char *) mem + guardsize, pd->guardsize - guardsize, PROT_READ | PROT_WRITE | PROT_EXEC) != 0) goto mprot_error; |