summaryrefslogtreecommitdiffstats
path: root/util.c
diff options
context:
space:
mode:
authorBert Münnich <ber.t@posteo.de>2015-10-28 22:29:01 +0100
committerBert Münnich <ber.t@posteo.de>2015-10-28 22:29:01 +0100
commit851e4288c102cc4177d54d87aded43d003e85885 (patch)
tree6336fa0d4b01426b6e35f0dbed74632855a1e97d /util.c
parentb096cbd536b94ee848b94d873d0c0a898f574af1 (diff)
downloadnsxiv-851e4288c102cc4177d54d87aded43d003e85885.tar.zst
Prefix safe allocation functions with 'e' instead of 's_'
Diffstat (limited to 'util.c')
-rw-r--r--util.c29
1 files changed, 14 insertions, 15 deletions
diff --git a/util.c b/util.c
index b8f2382..4569489 100644
--- a/util.c
+++ b/util.c
@@ -28,7 +28,7 @@
void cleanup(void);
-void* s_malloc(size_t size)
+void* emalloc(size_t size)
{
void *ptr;
@@ -38,7 +38,7 @@ void* s_malloc(size_t size)
return ptr;
}
-void* s_realloc(void *ptr, size_t size)
+void* erealloc(void *ptr, size_t size)
{
ptr = realloc(ptr, size);
if (ptr == NULL)
@@ -46,16 +46,15 @@ void* s_realloc(void *ptr, size_t size)
return ptr;
}
-char* s_strdup(const char *s)
+char* estrdup(const char *s)
{
- char *d = NULL;
+ char *d;
+ size_t n = strlen(s) + 1;
- if (s != NULL) {
- d = malloc(strlen(s) + 1);
- if (d == NULL)
- die("could not allocate memory");
- strcpy(d, s);
- }
+ d = malloc(n);
+ if (d == NULL)
+ die("could not allocate memory");
+ memcpy(d, s, n);
return d;
}
@@ -112,7 +111,7 @@ int r_opendir(r_dir_t *rdir, const char *dirname)
}
rdir->stcap = 512;
- rdir->stack = (char**) s_malloc(rdir->stcap * sizeof(char*));
+ rdir->stack = (char**) emalloc(rdir->stcap * sizeof(char*));
rdir->stlen = 0;
rdir->name = (char*) dirname;
@@ -158,7 +157,7 @@ char* r_readdir(r_dir_t *rdir)
continue;
len = strlen(rdir->name) + strlen(dentry->d_name) + 2;
- filename = (char*) s_malloc(len);
+ filename = (char*) emalloc(len);
snprintf(filename, len, "%s%s%s", rdir->name,
rdir->name[strlen(rdir->name)-1] == '/' ? "" : "/",
dentry->d_name);
@@ -169,8 +168,8 @@ char* r_readdir(r_dir_t *rdir)
/* put subdirectory on the stack */
if (rdir->stlen == rdir->stcap) {
rdir->stcap *= 2;
- rdir->stack = (char**) s_realloc(rdir->stack,
- rdir->stcap * sizeof(char*));
+ rdir->stack = (char**) erealloc(rdir->stack,
+ rdir->stcap * sizeof(char*));
}
rdir->stack[rdir->stlen++] = filename;
continue;
@@ -207,7 +206,7 @@ int r_mkdir(const char *path)
if (stat(path, &stats) == 0)
return S_ISDIR(stats.st_mode) ? 0 : -1;
- d = dir = (char*) s_malloc(strlen(path) + 1);
+ d = dir = (char*) emalloc(strlen(path) + 1);
strcpy(dir, path);
while (d != NULL && err == 0) {