Ensure buffer for environment is large enough on NetBSD

This commit is contained in:
Benny Baumann 2022-05-05 20:00:05 +02:00 committed by BenBE
parent 0388b30077
commit 4f1269cc9f
1 changed files with 8 additions and 1 deletions

View File

@ -311,7 +311,13 @@ char* Platform_getProcessEnv(pid_t pid) {
for (char** p = ptr; *p; p++) {
size_t len = strlen(*p) + 1;
if (size + len > capacity) {
while (size + len > capacity) {
if (capacity > (SIZE_MAX / 2)) {
free(env);
env = NULL;
goto end;
}
capacity *= 2;
env = xRealloc(env, capacity);
}
@ -327,6 +333,7 @@ char* Platform_getProcessEnv(pid_t pid) {
env[size + 1] = 0;
}
end:
(void) kvm_close(kt);
return env;
}