On 2023-08-04 04:58, Bruno Haible wrote:
The mentioned GCC bug is about a -Wanalyzer-use-after-free false positive.
I guess you meanthttps://gcc.gnu.org/bugzilla/show_bug.cgi?id=110884 or
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101778 ?
Thanks for catching that. Yes, it should be 110884. I installed the
attached to Gnulib.From dcf286c586069684fe4d5bb2bd770394cd7cdad6 Mon Sep 17 00:00:00 2001
From: Paul Eggert <egg...@cs.ucla.edu>
Date: Sun, 6 Aug 2023 12:43:05 -0700
Subject: [PATCH] readutmp: fix comment bug ID
* lib/readutmp.c: Fix comment (thanks to Bruno Haible).
---
lib/readutmp.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/readutmp.c b/lib/readutmp.c
index b8eba076fa..4e1d7ec26b 100644
--- a/lib/readutmp.c
+++ b/lib/readutmp.c
@@ -47,7 +47,7 @@
# pragma GCC diagnostic ignored "-Wsizeof-pointer-memaccess"
#endif
-/* Work around <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=109614>. */
+/* Work around <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=110884>. */
#if 11 <= __GNUC__
# pragma GCC diagnostic ignored "-Wstringop-overread"
#endif
--
2.39.2