mirror of
https://github.com/xzeldon/htop.git
synced 2025-04-05 02:47:07 +03:00
Check for allocation failure
Pointed out by Michael Reed.
This commit is contained in:
parent
ae5c01f485
commit
c1b3289219
@ -139,7 +139,8 @@ char *OpenBSDProcessList_readProcessName(kvm_t* kd, struct kinfo_proc* kproc, in
|
|||||||
for (i = 0; arg[i] != NULL; i++) {
|
for (i = 0; arg[i] != NULL; i++) {
|
||||||
len += strlen(arg[i]) + 1;
|
len += strlen(arg[i]) + 1;
|
||||||
}
|
}
|
||||||
buf = s = malloc(len);
|
if ((buf = s = malloc(len)) == NULL)
|
||||||
|
err(1, NULL);
|
||||||
for (i = 0; arg[i] != NULL; i++) {
|
for (i = 0; arg[i] != NULL; i++) {
|
||||||
n = strlcpy(buf, arg[i], (s + len) - buf);
|
n = strlcpy(buf, arg[i], (s + len) - buf);
|
||||||
buf += n;
|
buf += n;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user