diff options
Diffstat (limited to 'nptl/allocatestack.c')
-rw-r--r-- | nptl/allocatestack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nptl/allocatestack.c b/nptl/allocatestack.c index 45e4d87c49..f22f304347 100644 --- a/nptl/allocatestack.c +++ b/nptl/allocatestack.c @@ -313,7 +313,7 @@ allocate_stack (const struct pthread_attr *attr, struct pthread **pdp, /* Remember the stack-related values. */ pd->stackblock = (char *) attr->stackaddr - size; - pd->stackblock_size = size - adj; + pd->stackblock_size = size; /* This is a user-provided stack. It will not be queued in the stack cache nor will the memory (except the TLS memory) be freed. */ |