From: Paul Floyd Date: Tue, 22 Aug 2023 19:35:00 +0000 (+0200) Subject: Bug 473604 - Fix bug472219.c compile failure with Clang 16 X-Git-Tag: VALGRIND_3_22_0~123 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bdd5f0bad19eb9544511a9c40241901d34f16781;p=thirdparty%2Fvalgrind.git Bug 473604 - Fix bug472219.c compile failure with Clang 16 --- diff --git a/NEWS b/NEWS index e3e3b21d5e..2ce35472dd 100644 --- 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 diff --git a/memcheck/tests/bug472219.c b/memcheck/tests/bug472219.c index 88567caa2c..cb9fefe4cb 100644 --- a/memcheck/tests/bug472219.c +++ b/memcheck/tests/bug472219.c @@ -1,3 +1,4 @@ +#define _GNU_SOURCE /* for ppoll */ #include #include #include "../../config.h"