]> granicus.if.org Git - fcron/blob - mem.c
updated changes/todo
[fcron] / mem.c
1 /*
2  * FCRON - periodic command scheduler
3  *
4  *  Copyright 2000-2012 Thibault Godouet <fcron@free.fr>
5  *
6  *  This program is free software; you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation; either version 2 of the License, or
9  *  (at your option) any later version.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  *  The GNU General Public License can also be found in the file
21  *  `LICENSE' that comes with the fcron source distribution.
22  */
23
24 #include "global.h"
25 #include "mem.h"
26
27 char *
28 strdup2(const char *str)
29 {
30     char *ptr;
31
32     if ( str == NULL )
33         return NULL;
34
35     ptr = strdup(str);
36
37     if ( ! ptr)
38         die_e("Could not strdup()");
39
40     return(ptr);
41 }
42
43 char *
44 strndup2(const char *str, size_t n)
45 {
46     char *ptr;
47
48     if ( str == NULL )
49         return NULL;
50
51     ptr = strndup(str, n);
52
53     if ( ! ptr)
54         die_e("Could not strdup()");
55
56     return(ptr);
57 }
58
59 void *
60 alloc_safe(size_t len, const char * desc)
61 /* allocate len-bytes of memory, and return the pointer.
62  * Die with a log message if there is any error */
63 {
64     void *ptr = NULL;
65
66     ptr = calloc(1, len);
67     if ( ptr == NULL ) {
68         die_e("Could not allocate %d bytes of memory%s%s", len, (desc)? "for " : "", desc);
69     }
70     return ptr;
71 }
72
73 void *
74 realloc_safe(void *cur, size_t len, const char * desc)
75 /* allocate len-bytes of memory, and return the pointer.
76  * Die with a log message if there is any error */
77 {
78     void *new = NULL;
79
80     new = realloc(cur, len);
81     if ( new == NULL ) {
82         die_e("Could not reallocate %d bytes of memory%s%s", len, (desc)? "for " : "", desc);
83     }
84     return new;
85 }
86
87