Paul Eggert wrote: > 0001-maint-Update-after-gnulib-module-readutmp-changed.patch
> +/* Work around <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=109614>, > + triggered by STREQ_LEN with a negative length. */ > +#if 11 <= __GNUC__ > +# pragma GCC diagnostic ignored "-Wstringop-overread" > +#endif The mentioned GCC bug is about a -Wanalyzer-use-after-free false positive. I guess you meant https://gcc.gnu.org/bugzilla/show_bug.cgi?id=110884 or https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101778 ? Bruno