Fix the stack malloc failure check.
Signed-off-by: Jeff Dike <[email protected]>
--
syslets/async-test-v5/sys.h | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
Index: linux-2.6/syslets/async-test-v5/sys.h
===================================================================
--- linux-2.6.orig/syslets/async-test-v5/sys.h 2007-05-31 13:29:57.000000000 -0400
+++ linux-2.6/syslets/async-test-v5/sys.h 2007-06-03 13:12:43.000000000 -0400
@@ -108,9 +108,10 @@ static u64 completion_ring[MAX_PENDING];
static unsigned long thread_stack_alloc()
{
- void *stack = malloc(THREAD_STACK_SIZE) + THREAD_STACK_SIZE;
+ void *stack = malloc(THREAD_STACK_SIZE);
assert(stack != NULL);
+ stack += THREAD_STACK_SIZE;
pr("allocated stack: %p\n", stack);
return (unsigned long)stack;
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[Index of Archives]
[Kernel Newbies]
[Netfilter]
[Bugtraq]
[Photo]
[Stuff]
[Gimp]
[Yosemite News]
[MIPS Linux]
[ARM Linux]
[Linux Security]
[Linux RAID]
[Video 4 Linux]
[Linux for the blind]
[Linux Resources]