]> andersk Git - openssh.git/blame_incremental - xmalloc.c
- (bal) uuencode.c resync w/ OpenBSD tree, plus whitespace.
[openssh.git] / xmalloc.c
... / ...
CommitLineData
1/*
2 * Author: Tatu Ylonen <ylo@cs.hut.fi>
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
5 * Versions of malloc and friends that check their results, and never return
6 * failure (they call fatal if they encounter an error).
7 *
8 * As far as I am concerned, the code I have written for this software
9 * can be used freely for any purpose. Any derived versions of this
10 * software must be clearly marked as such, and if the derived work is
11 * incompatible with the protocol description in the RFC file, it must be
12 * called by a name other than "ssh" or "Secure Shell".
13 */
14
15#include "includes.h"
16RCSID("$OpenBSD: xmalloc.c,v 1.11 2001/02/04 15:32:27 stevesk Exp $");
17
18#include "xmalloc.h"
19#include "log.h"
20
21void *
22xmalloc(size_t size)
23{
24 void *ptr = malloc(size);
25 if (ptr == NULL)
26 fatal("xmalloc: out of memory (allocating %d bytes)", (int) size);
27 return ptr;
28}
29
30void *
31xrealloc(void *ptr, size_t new_size)
32{
33 void *new_ptr;
34
35 if (ptr == NULL)
36 fatal("xrealloc: NULL pointer given as argument");
37 new_ptr = realloc(ptr, new_size);
38 if (new_ptr == NULL)
39 fatal("xrealloc: out of memory (new_size %d bytes)", (int) new_size);
40 return new_ptr;
41}
42
43void
44xfree(void *ptr)
45{
46 if (ptr == NULL)
47 fatal("xfree: NULL pointer given as argument");
48 free(ptr);
49}
50
51char *
52xstrdup(const char *str)
53{
54 size_t len = strlen(str) + 1;
55
56 char *cp = xmalloc(len);
57 strlcpy(cp, str, len);
58 return cp;
59}
This page took 0.033487 seconds and 5 git commands to generate.