ubase

suckless linux base utils
git clone git://git.2f30.org/ubase
Log | Files | Refs | README | LICENSE

commit 5b9ea69b08a15dcad0ce2422289d86d459502197
parent 550b655d987f46f09861c0239c0c11a86db5d09c
Author: sin <sin@2f30.org>
Date:   Wed, 30 Apr 2014 13:08:16 +0100

Sweep through code and replace malloc() with emalloc() etc.

Diffstat:
Mdmesg.c | 4+---
Minsmod.c | 6++----
Mkillall5.c | 4+---
Mmkswap.c | 4+---
Mpidof.c | 4+---
Msu.c | 4+---
Mumount.c | 8++------
Mutil/apathmax.c | 4+---
Mutil/tty.c | 4+---
9 files changed, 11 insertions(+), 31 deletions(-)

diff --git a/dmesg.c b/dmesg.c @@ -54,9 +54,7 @@ main(int argc, char *argv[]) if (n < 0) eprintf("klogctl:"); - buf = malloc(n); - if (!buf) - eprintf("malloc:"); + buf = emalloc(n); n = klogctl(SYSLOG_ACTION_READ_ALL, buf, n); if (n < 0) diff --git a/insmod.c b/insmod.c @@ -37,8 +37,7 @@ main(int argc, char *argv[]) if (fstat(fd, &sb) < 0) eprintf("stat %s:", argv[0]); blen = sb.st_size; - if(!(buf = malloc(blen))) - eprintf("malloc:"); + buf = emalloc(blen); n = read(fd, buf, blen); if(n < 0 || (size_t)n != blen) @@ -51,8 +50,7 @@ main(int argc, char *argv[]) plen += strlen(argv[i]); if (plen > 0) { plen += argc; - if(!(opts = calloc(1, plen))) - eprintf("calloc:"); + opts = ecalloc(1, plen); for (i = 0; i < argc; i++) { strcat(opts, argv[i]); if (i + 1 < argc) diff --git a/killall5.c b/killall5.c @@ -68,9 +68,7 @@ main(int argc, char *argv[]) } ARGEND; for (p = strtok(arg, ","); p; p = strtok(NULL, ",")) { - onode = malloc(sizeof(*onode)); - if (!onode) - eprintf("malloc:"); + onode = emalloc(sizeof(*onode)); onode->pid = estrtol(p, 10); onode->next = omithead; omithead = onode; diff --git a/mkswap.c b/mkswap.c @@ -58,9 +58,7 @@ main(int argc, char *argv[]) if (fstat(fd, &sb) < 0) eprintf("stat %s:", argv[0]); - buf = calloc(1, pagesize); - if (!buf) - eprintf("malloc:"); + buf = ecalloc(1, pagesize); pages = sb.st_size / pagesize; if (pages < SWAP_MIN_PAGES) diff --git a/pidof.c b/pidof.c @@ -49,9 +49,7 @@ main(int argc, char *argv[]) return 1; for (p = strtok(arg, ","); p; p = strtok(NULL, ",")) { - onode = malloc(sizeof(*onode)); - if (!onode) - eprintf("malloc:"); + onode = emalloc(sizeof(*onode)); if (strcmp(p, "%PPID") == 0) onode->pid = getppid(); else diff --git a/su.c b/su.c @@ -151,9 +151,7 @@ msetenv(const char *name, const char *value) size_t sz; sz = strlen(name) + strlen(value) + 2; - buf = malloc(sz); - if (!buf) - eprintf("malloc:"); + buf = emalloc(sz); snprintf(buf, sz, "%s=%s", name, value); return buf; } diff --git a/umount.c b/umount.c @@ -70,12 +70,8 @@ umountall(int flags) while ((me = getmntent(fp))) { if (strcmp(me->mnt_type, "proc") == 0) continue; - mntdirs = realloc(mntdirs, ++len * sizeof(*mntdirs)); - if (!mntdirs) - eprintf("realloc:"); - mntdirs[len - 1] = strdup(me->mnt_dir); - if (!mntdirs[len - 1]) - eprintf("strdup:"); + mntdirs = erealloc(mntdirs, ++len * sizeof(*mntdirs)); + mntdirs[len - 1] = estrdup(me->mnt_dir); } endmntent(fp); while (--len >= 0) { diff --git a/util/apathmax.c b/util/apathmax.c @@ -19,7 +19,5 @@ apathmax(char **p, long *size) } } - if(!(*p = malloc(*size))) - eprintf("malloc:"); + *p = emalloc(*size); } - diff --git a/util/tty.c b/util/tty.c @@ -21,9 +21,7 @@ ttytostr(int tty_maj, int tty_min) /* Up to 10k ttys */ len = strlen(pts) + 4 + 1; - ttystr = malloc(len); - if (!ttystr) - eprintf("malloc:"); + ttystr = emalloc(len); switch (tty_maj) { case 136: snprintf(ttystr, len, "%s%d", pts, tty_min);