]> andersk Git - openssh.git/blob - xmalloc.c
- deraadt@cvs.openbsd.org 2006/03/19 18:51:18
[openssh.git] / xmalloc.c
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"
16
17 #include "xmalloc.h"
18 #include "log.h"
19
20 void *
21 xmalloc(size_t size)
22 {
23         void *ptr;
24
25         if (size == 0)
26                 fatal("xmalloc: zero size");
27         ptr = malloc(size);
28         if (ptr == NULL)
29                 fatal("xmalloc: out of memory (allocating %lu bytes)", (u_long) size);
30         return ptr;
31 }
32
33 void *
34 xrealloc(void *ptr, size_t new_size)
35 {
36         void *new_ptr;
37
38         if (new_size == 0)
39                 fatal("xrealloc: zero size");
40         if (ptr == NULL)
41                 new_ptr = malloc(new_size);
42         else
43                 new_ptr = realloc(ptr, new_size);
44         if (new_ptr == NULL)
45                 fatal("xrealloc: out of memory (new_size %lu bytes)", (u_long) new_size);
46         return new_ptr;
47 }
48
49 void
50 xfree(void *ptr)
51 {
52         if (ptr == NULL)
53                 fatal("xfree: NULL pointer given as argument");
54         free(ptr);
55 }
56
57 char *
58 xstrdup(const char *str)
59 {
60         size_t len;
61         char *cp;
62
63         len = strlen(str) + 1;
64         cp = xmalloc(len);
65         strlcpy(cp, str, len);
66         return cp;
67 }
This page took 0.888166 seconds and 5 git commands to generate.