[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 21/27] xstriconv: improve -fanalyzer malloc checking
From: |
Paul Eggert |
Subject: |
[PATCH 21/27] xstriconv: improve -fanalyzer malloc checking |
Date: |
Sun, 1 Aug 2021 18:18:15 -0700 |
---
ChangeLog | 2 +-
lib/xstriconv.h | 8 +++++---
2 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 19ca548c7..aba2b150d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -7,7 +7,7 @@
* 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/xgethostname.h, lib/xmalloca.h:
- * lib/xreadlink.h:
+ * lib/xreadlink.h, lib/xstriconv.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/xstriconv.h b/lib/xstriconv.h
index 1f69fa3b2..d90aa4c5c 100644
--- a/lib/xstriconv.h
+++ b/lib/xstriconv.h
@@ -19,6 +19,7 @@
#define _XSTRICONV_H
#include <stddef.h>
+#include <stdlib.h>
#if HAVE_ICONV
#include <iconv.h>
#endif
@@ -54,7 +55,8 @@ extern int xmem_cd_iconv (const char *src, size_t srclen,
iconv_t cd,
Upon memory allocation failure, report the error and exit.
Return value: the freshly allocated resulting NUL-terminated string if
successful, otherwise NULL and errno set. */
-extern char * xstr_cd_iconv (const char *src, iconv_t cd);
+extern char * xstr_cd_iconv (const char *src, iconv_t cd)
+ _GL_ATTRIBUTE_MALLOC _GL_ATTRIBUTE_DEALLOC_FREE;
#endif
@@ -67,8 +69,8 @@ extern char * xstr_cd_iconv (const char *src, iconv_t cd);
Return value: the freshly allocated resulting NUL-terminated string if
successful, otherwise NULL and errno set. */
extern char * xstr_iconv (const char *src,
- const char *from_codeset, const char *to_codeset);
-
+ const char *from_codeset, const char *to_codeset)
+ _GL_ATTRIBUTE_MALLOC _GL_ATTRIBUTE_DEALLOC_FREE;
#ifdef __cplusplus
}
--
2.31.1
- Re: [PATCH 11/27] quotearg: improve -fanalyzer malloc checking, (continued)
- [PATCH 14/27] sh-quote: improve -fanalyzer malloc checking, Paul Eggert, 2021/08/01
- [PATCH 12/27] readutmp: improve -fanalyzer malloc checking, Paul Eggert, 2021/08/01
- [PATCH 16/27] trim: improve -fanalyzer malloc checking, Paul Eggert, 2021/08/01
- [PATCH 18/27] xgethostname: improve -fanalyzer malloc checking, Paul Eggert, 2021/08/01
- [PATCH 17/27] xgetcwd: improve -fanalyzer malloc checking, Paul Eggert, 2021/08/01
- [PATCH 15/27] system-quote: improve -fanalyzer malloc checking, Paul Eggert, 2021/08/01
- [PATCH 13/27] savedir: improve -fanalyzer malloc checking, Paul Eggert, 2021/08/01
- [PATCH 20/27] xreadlink: improve -fanalyzer malloc checking, Paul Eggert, 2021/08/01
- [PATCH 27/27] * lib/quotarg.c: remove wrong, unneeded comment, Paul Eggert, 2021/08/01
- [PATCH 21/27] xstriconv: improve -fanalyzer malloc checking,
Paul Eggert <=
- [PATCH 22/27] xvasprintf: improve -fanalyzer malloc checking, Paul Eggert, 2021/08/01
- [PATCH 19/27] xmalloca: improve -fanalyzer malloc checking, Paul Eggert, 2021/08/01
- [PATCH 23/27] vasnprintf: improve -fanalyzer malloc checking, Paul Eggert, 2021/08/01
- [PATCH 24/27] argmatch-tests: improve -fanalyzer malloc checking, Paul Eggert, 2021/08/01
- [PATCH 26/27] sigsegv-tests: make more things static, Paul Eggert, 2021/08/01
- [PATCH 25/27] manywarnings: improve -fanalyzer malloc checking, Paul Eggert, 2021/08/01