From 4f1269cc9f681f7e31361f8293a6bca5a3ec1e82 Mon Sep 17 00:00:00 2001 From: Benny Baumann Date: Thu, 5 May 2022 20:00:05 +0200 Subject: Ensure buffer for environment is large enough on NetBSD --- netbsd/Platform.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/netbsd/Platform.c b/netbsd/Platform.c index 1812ddd4..cf6079db 100644 --- a/netbsd/Platform.c +++ b/netbsd/Platform.c @@ -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; } -- cgit v1.2.3