]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Bug 514762 - Many "Bad file descriptor" messages when using --track-fds=yes and ...
authorPaul Floyd <pjfloyd@wanadoo.fr>
Sat, 17 Jan 2026 20:43:36 +0000 (21:43 +0100)
committerPaul Floyd <pjfloyd@wanadoo.fr>
Sat, 17 Jan 2026 20:44:24 +0000 (21:44 +0100)
Just a one-line deletion in the end.

NEWS
coregrind/m_libcfile.c

diff --git a/NEWS b/NEWS
index 06ef1c82cb5217a0a2e686e059d881f3e2dd2455..1c93e13456f55187bc21342173ef93702d7d3699 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -71,6 +71,8 @@ are not entered into bugzilla tend to get forgotten about or ignored.
 514094  readlink("/proc/self/exe") overwrites buffer beyond its return value
 514613  Unclosed leak_summary/still_reachable tag in xml output
 514659  ltp 20250930 vs linux 6.18.3 doesn't build
+514762  Many "Bad file descriptor" messages when using --track-fds=yes and
+        -d on systems without /proc
 
 To see details of a given bug, visit
   https://bugs.kde.org/show_bug.cgi?id=XXXXXX
index aecc5404b9a84d36434f292fdba3688d9d60a12f..49abe4c172640ff3650d8dad34f70d19915ed62f 100644 (file)
@@ -808,7 +808,6 @@ Int VG_(fcntl) ( Int fd, Int cmd, Addr arg )
 #    error "Unknown OS"
 #  endif
    if (sr_isError(res)) {
-      VG_(debugLog)(1, "VG_(fcntl)", "fcntl cmd %d error %lu %s\n", cmd, sr_Err(res), VG_(strerror)(sr_Err(res)));
       return -1;
    }
    return (Int)sr_Res(res);