mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-09 03:21:51 +00:00
malloc_simple: calloc: don't call memset if malloc failed
malloc_simple() can return 0 if out of memory. Don't call memset from calloc() in this case but rely on the caller checking the return value. Signed-off-by: Simon Goldschmidt <simon.k.r.goldschmidt@gmail.com> Reviewed-by: Marek Vasut <marex@denx.de>
This commit is contained in:
parent
a5e34fc0b6
commit
f3da76ea8b
1 changed files with 2 additions and 1 deletions
|
@ -57,7 +57,8 @@ void *calloc(size_t nmemb, size_t elem_size)
|
|||
void *ptr;
|
||||
|
||||
ptr = malloc(size);
|
||||
memset(ptr, '\0', size);
|
||||
if (ptr)
|
||||
memset(ptr, '\0', size);
|
||||
|
||||
return ptr;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue