]> andersk Git - openssh.git/blob - xmalloc.c
- stevesk@cvs.openbsd.org 2001/01/28 20:53:21
[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 RCSID("$OpenBSD: xmalloc.c,v 1.10 2001/01/28 20:53:21 stevesk Exp $");
17
18 #include "xmalloc.h"
19 #include "log.h"
20
21 void *
22 xmalloc(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
30 void *
31 xrealloc(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
43 void
44 xfree(void *ptr)
45 {
46         if (ptr == NULL)
47                 fatal("xfree: NULL pointer given as argument");
48         free(ptr);
49 }
50
51 char *
52 xstrdup(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.272407 seconds and 5 git commands to generate.