From: Paul Eggert Date: Mon, 2 Aug 2021 00:45:24 +0000 (-0700) Subject: xgethostname: improve -fanalyzer malloc checking X-Git-Tag: v1.0~2742 X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=8136f0c50ecd74f66082c80a7f036ef5490a447c;p=gnulib.git xgethostname: improve -fanalyzer malloc checking --- diff --git a/ChangeLog b/ChangeLog index fa2b09d2da..99d546d9ff 100644 --- a/ChangeLog +++ b/ChangeLog @@ -6,7 +6,7 @@ * lib/filenamecat.h, lib/malloca.h, lib/modechange.h: * lib/mountlist.h, lib/pagealign_alloc.h, lib/quotearg.h: * lib/readutmp.h, lib/savedir.h, lib/sh-quote.h, lib/system-quote.h: - * lib/trim.h, lib/xgetcwd.h: + * lib/trim.h, lib/xgetcwd.h, lib/xgethostname.h: Add malloc-related attributes and include stdlib.h as needed. * lib/dfa.c: Include verify.h. (assume_nonnull): New macro. diff --git a/lib/xgethostname.h b/lib/xgethostname.h index f4be562682..23d2d61ebe 100644 --- a/lib/xgethostname.h +++ b/lib/xgethostname.h @@ -15,4 +15,7 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . */ -char *xgethostname (void); +#include + +char *xgethostname (void) + _GL_ATTRIBUTE_MALLOC _GL_ATTRIBUTE_DEALLOC_FREE;