mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-11 04:27:49 -05:00
Merge branch 'xcalloc-fix' into master
This commit is contained in:
commit
32639e442f
1 changed files with 3 additions and 4 deletions
|
|
@ -1,3 +1,4 @@
|
|||
#include <assert.h>
|
||||
#include <errno.h>
|
||||
#include <stdarg.h>
|
||||
#include <stdio.h>
|
||||
|
|
@ -36,10 +37,8 @@ xmalloc(size_t size)
|
|||
void *
|
||||
xcalloc(size_t nmemb, size_t size)
|
||||
{
|
||||
if (unlikely(nmemb == 0 || size == 0)) {
|
||||
size = 1;
|
||||
}
|
||||
return check_alloc(calloc(nmemb, size));
|
||||
assert(size != 0);
|
||||
return check_alloc(calloc(likely(nmemb) ? nmemb : 1, size));
|
||||
}
|
||||
|
||||
void *
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue