From: Shamil Abdulaev Date: Wed, 29 Apr 2026 23:37:39 +0000 (+0300) Subject: hugepages: close fd on error path in __get_thp_mode X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ddd5c8b0b477420ea2c4ff4cadd2a9c9521f437b;p=thirdparty%2Fglibc.git hugepages: close fd on error path in __get_thp_mode If __read_nocancel fails or overflows the buffer, the function returned without closing the /sys/kernel/mm/transparent_hugepage/enabled fd. Found while investigating BZ #34083. Signed-off-by: Shamil Abdulaev Reviewed-by: H.J. Lu --- diff --git a/sysdeps/unix/sysv/linux/hugepages.c b/sysdeps/unix/sysv/linux/hugepages.c index 707a75c2a2..46e05151a3 100644 --- a/sysdeps/unix/sysv/linux/hugepages.c +++ b/sysdeps/unix/sysv/linux/hugepages.c @@ -61,10 +61,10 @@ __get_thp_mode (void) char str[sizeof(mode_always)]; ssize_t s = __read_nocancel (fd, str, sizeof (str)); + __close_nocancel (fd); if (s >= sizeof str || s < 0) return thp_mode_not_supported; str[s] = '\0'; - __close_nocancel (fd); if (s == sizeof (mode_always) - 1) {