From f41eed834e004f794d7b27df56148daea3d020fa Mon Sep 17 00:00:00 2001 From: KaraZajac Date: Sat, 23 May 2026 22:19:59 -0400 Subject: [PATCH] pintheft: add missing for mmap/mprotect/PROT_* v0.9.0 release builds all 4 failed because pintheft module used mmap/ mprotect/PROT_READ/MAP_PRIVATE without including sys/mman.h. Worked on the dev host because some indirect include pulled it in; CI's stricter glibc/musl headers don't. --- modules/pintheft_cve_2026_43494/skeletonkey_modules.c | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/pintheft_cve_2026_43494/skeletonkey_modules.c b/modules/pintheft_cve_2026_43494/skeletonkey_modules.c index c83ac1d..d112da3 100644 --- a/modules/pintheft_cve_2026_43494/skeletonkey_modules.c +++ b/modules/pintheft_cve_2026_43494/skeletonkey_modules.c @@ -70,6 +70,7 @@ #include #include #include +#include /* mmap, mprotect, munmap, PROT_*, MAP_* */ #ifdef __linux__ #include