Sweep through code and replace malloc() with emalloc() etc.
This commit is contained in:
parent
550b655d98
commit
5b9ea69b08
4
dmesg.c
4
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)
|
||||
|
6
insmod.c
6
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)
|
||||
|
@ -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;
|
||||
|
4
mkswap.c
4
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)
|
||||
|
4
pidof.c
4
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
|
||||
|
4
su.c
4
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;
|
||||
}
|
||||
|
8
umount.c
8
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) {
|
||||
|
@ -19,7 +19,5 @@ apathmax(char **p, long *size)
|
||||
}
|
||||
}
|
||||
|
||||
if(!(*p = malloc(*size)))
|
||||
eprintf("malloc:");
|
||||
*p = emalloc(*size);
|
||||
}
|
||||
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user