git: 6348a5fd0d47 - stable/15 - shm: Zero struct kinfo_file in sysctl handler
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 20 Mar 2026 13:36:43 UTC
The branch stable/15 has been updated by emaste:
URL: https://cgit.FreeBSD.org/src/commit/?id=6348a5fd0d4792e752cb714f2a536c3287b8d580
commit 6348a5fd0d4792e752cb714f2a536c3287b8d580
Author: Ed Maste <emaste@FreeBSD.org>
AuthorDate: 2026-03-11 01:59:07 +0000
Commit: Ed Maste <emaste@FreeBSD.org>
CommitDate: 2026-03-20 13:36:35 +0000
shm: Zero struct kinfo_file in sysctl handler
Reported by: Calif.io in collaboration with Claude and Anthropic Research
Reviewed by: jhb
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D55806
(cherry picked from commit 25cc459286a02b646751541ccde5a33319471c73)
---
sys/kern/uipc_shm.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/kern/uipc_shm.c b/sys/kern/uipc_shm.c
index fe3feab4149f..0ad5be2e8d71 100644
--- a/sys/kern/uipc_shm.c
+++ b/sys/kern/uipc_shm.c
@@ -2149,7 +2149,7 @@ sysctl_posix_shm_list(SYSCTL_HANDLER_ARGS)
{
struct shm_mapping *shmm;
struct sbuf sb;
- struct kinfo_file kif;
+ struct kinfo_file kif = {};
u_long i;
int error, error2;