* lib/savedir.c: Ignore -Wanalyzer-malloc-leak and
-Wanalyzer-null-dereference.
2024-02-17 Paul Eggert <eggert@cs.ucla.edu>
+ savedir: work around GCC bug 113963
+ * lib/savedir.c: Ignore -Wanalyzer-malloc-leak and
+ -Wanalyzer-null-dereference.
+
Solaris EOL update
* doc/solaris-versions: Solaris 11.4 EOL update. Also mention 11.3.
#include "attribute.h"
#include "xalloc.h"
+/* Pacify GCC bug <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113963>. */
+#if 13 <= __GNUC__
+# pragma GCC diagnostic ignored "-Wanalyzer-malloc-leak"
+# pragma GCC diagnostic ignored "-Wanalyzer-null-dereference"
+#endif
+
typedef struct
{
/* Offset of file name in name_space. */