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

This commit is contained in:
sin 2014-04-30 13:08:16 +01:00
parent 550b655d98
commit 5b9ea69b08
9 changed files with 11 additions and 31 deletions

View File

@ -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)

View File

@ -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)

View File

@ -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;

View File

@ -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)

View File

@ -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

4
su.c
View File

@ -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;
}

View File

@ -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) {

View File

@ -19,7 +19,5 @@ apathmax(char **p, long *size)
}
}
if(!(*p = malloc(*size)))
eprintf("malloc:");
*p = emalloc(*size);
}

View File

@ -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);