Commit 1809f4be authored by Michael McConville's avatar Michael McConville
Browse files

Remove needless allocation error conditions

These allocations were converted to use xMalloc et al. and no longer
need error checks.
parent 306c5443
......@@ -280,11 +280,9 @@ char* Platform_getProcessEnv(pid_t pid) {
size_t size = endp - p;
env = xMalloc(size+2);
if (env) {
memcpy(env, p, size);
env[size] = 0;
env[size+1] = 0;
}
memcpy(env, p, size);
env[size] = 0;
env[size+1] = 0;
}
}
free(buf);
......
......@@ -265,9 +265,6 @@ void Platform_setSwapValues(Meter* this) {
}
swdev = xCalloc(nswap, sizeof(*swdev));
if (swdev == NULL) {
return;
}
rnswap = swapctl(SWAP_STATS, swdev, nswap);
if (rnswap == -1) {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment