mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-22 13:00:06 +00:00
(get_cached_stack): Don't crash if we first found a stack with a larger size then needed.
This commit is contained in:
parent
347ae8d421
commit
5cfc88a718
@ -114,7 +114,8 @@ get_cached_stack (size_t *sizep, void **memp)
|
||||
break;
|
||||
}
|
||||
|
||||
if (result->stackblock_size > curr->stackblock_size)
|
||||
if (result == NULL
|
||||
|| result->stackblock_size > curr->stackblock_size)
|
||||
result = curr;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user