File: xmalloc.c

package info (click to toggle)
nfs-utils 1%3A1.0.6-3.1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,532 kB
  • ctags: 1,845
  • sloc: ansic: 16,107; sh: 3,129; makefile: 272
file content (48 lines) | stat: -rw-r--r-- 663 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*
 * support/nfs/xmalloc.c
 *
 * malloc with NULL checking.
 *
 * Copyright (C) 1995, 1996 Olaf Kirch <okir@monad.swb.de>
 */

#include "config.h"

#include <stdlib.h>
#include <string.h>
#include "xmalloc.h"
#include "xlog.h"

void *
xmalloc(size_t size)
{
	void	*ptr;

	if (!(ptr = malloc(size)))
		xlog(L_FATAL, "malloc: out of memory");
	return ptr;
}

void *
xrealloc(void *ptr, size_t size)
{
	if (!(ptr = realloc(ptr, size)))
		xlog(L_FATAL, "realloc: out of memory");
	return ptr;
}

void
xfree(void *ptr)
{
	free(ptr);
}

char *
xstrdup(const char *str)
{
	char	*ret;

	if (!(ret = strdup(str)))
		xlog(L_FATAL, "strdup: out of memory");
	return ret;
}