]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Bug 473604 - Fix bug472219.c compile failure with Clang 16
authorPaul Floyd <pjfloyd@wanadoo.fr>
Tue, 22 Aug 2023 19:35:00 +0000 (21:35 +0200)
committerPaul Floyd <pjfloyd@wanadoo.fr>
Tue, 22 Aug 2023 19:35:00 +0000 (21:35 +0200)
NEWS
memcheck/tests/bug472219.c

diff --git a/NEWS b/NEWS
index e3e3b21d5e6b814af1a110bf3fbd32f0551a8d0f..2ce35472dd0e576895f8abeccf883b5f202b3ab1 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -50,6 +50,7 @@ are not entered into bugzilla tend to get forgotten about or ignored.
 471807  Add support for lazy reading and downloading of DWARF debuginfo
 472219  Syscall param ppoll(ufds.events) points to uninitialised byte(s)
 472963  Broken regular expression in configure.ac
+473604  Fix bug472219.c compile failure with Clang 16
 
 To see details of a given bug, visit
   https://bugs.kde.org/show_bug.cgi?id=XXXXXX
index 88567caa2c2e5220c3915ebeb11cc1c87f7bfb50..cb9fefe4cb79623926733a3420d26b026319dcde 100644 (file)
@@ -1,3 +1,4 @@
+#define _GNU_SOURCE /* for ppoll */
 #include <poll.h>
 #include <stdlib.h>
 #include "../../config.h"