[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 15/27] system-quote: improve -fanalyzer malloc checking
From: |
Paul Eggert |
Subject: |
[PATCH 15/27] system-quote: improve -fanalyzer malloc checking |
Date: |
Sun, 1 Aug 2021 18:18:09 -0700 |
---
ChangeLog | 2 +-
lib/system-quote.h | 9 +++++++--
2 files changed, 8 insertions(+), 3 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 6c81691fb..7ef3676a6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,7 +5,7 @@
* lib/canonicalize.h, lib/dfa.h, lib/dirname.h, lib/exclude.h:
* 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/readutmp.h, lib/savedir.h, lib/sh-quote.h, lib/system-quote.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/system-quote.h b/lib/system-quote.h
index f378950e9..b1bbf6521 100644
--- a/lib/system-quote.h
+++ b/lib/system-quote.h
@@ -47,6 +47,7 @@
*/
#include <stddef.h>
+#include <stdlib.h>
#ifdef __cplusplus
extern "C" {
@@ -84,13 +85,17 @@ extern char *
/* Returns the freshly allocated quoted string. */
extern char *
system_quote (enum system_command_interpreter interpreter,
- const char *string);
+ const char *string)
+ _GL_ATTRIBUTE_MALLOC _GL_ATTRIBUTE_DEALLOC_FREE
+ _GL_ATTRIBUTE_RETURNS_NONNULL;
/* Returns a freshly allocated string containing all argument strings, quoted,
separated through spaces. */
extern char *
system_quote_argv (enum system_command_interpreter interpreter,
- char * const *argv);
+ char * const *argv)
+ _GL_ATTRIBUTE_MALLOC _GL_ATTRIBUTE_DEALLOC_FREE
+ _GL_ATTRIBUTE_RETURNS_NONNULL;
#ifdef __cplusplus
}
--
2.31.1
- Re: [PATCH 07/27] malloca: improve -fanalyzer malloc checking, (continued)
- [PATCH 09/27] mountlist: improve -fanalyzer malloc checking, Paul Eggert, 2021/08/01
- [PATCH 10/27] pagalign_alloc: improve -fanalyzer malloc checking, Paul Eggert, 2021/08/01
- [PATCH 11/27] quotearg: improve -fanalyzer malloc checking, Paul Eggert, 2021/08/01
- [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 <=
- [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, 2021/08/01
- [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