mirror of
https://github.com/tmux/tmux.git
synced 2024-10-31 22:58:49 +00:00
Add xrecallocarray.
This commit is contained in:
parent
9ea05b2fb3
commit
c416fe0da4
14
xmalloc.c
14
xmalloc.c
@ -71,6 +71,20 @@ xreallocarray(void *ptr, size_t nmemb, size_t size)
|
||||
return new_ptr;
|
||||
}
|
||||
|
||||
void *
|
||||
xrecallocarray(void *ptr, size_t oldnmemb, size_t nmemb, size_t size)
|
||||
{
|
||||
void *new_ptr;
|
||||
|
||||
if (nmemb == 0 || size == 0)
|
||||
fatalx("xrecallocarray: zero size");
|
||||
new_ptr = recallocarray(ptr, oldnmemb, nmemb, size);
|
||||
if (new_ptr == NULL)
|
||||
fatalx("xrecallocarray: allocating %zu * %zu bytes: %s",
|
||||
nmemb, size, strerror(errno));
|
||||
return new_ptr;
|
||||
}
|
||||
|
||||
char *
|
||||
xstrdup(const char *str)
|
||||
{
|
||||
|
@ -23,6 +23,7 @@ void *xmalloc(size_t);
|
||||
void *xcalloc(size_t, size_t);
|
||||
void *xrealloc(void *, size_t);
|
||||
void *xreallocarray(void *, size_t, size_t);
|
||||
void *xrecallocarray(void *, size_t, size_t, size_t);
|
||||
char *xstrdup(const char *);
|
||||
char *xstrndup(const char *, size_t);
|
||||
int xasprintf(char **, const char *, ...)
|
||||
|
Loading…
Reference in New Issue
Block a user