summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/shared/strv.c3
-rw-r--r--src/shared/strv.h2
2 files changed, 3 insertions, 2 deletions
diff --git a/src/shared/strv.c b/src/shared/strv.c
index 5cfab8f23e..1f73134756 100644
--- a/src/shared/strv.c
+++ b/src/shared/strv.c
@@ -38,9 +38,10 @@ void strv_clear(char **l) {
*l = NULL;
}
-void strv_free(char **l) {
+char **strv_free(char **l) {
strv_clear(l);
free(l);
+ return NULL;
}
char **strv_copy(char * const *l) {
diff --git a/src/shared/strv.h b/src/shared/strv.h
index 94bdbe62aa..ed0bb2e372 100644
--- a/src/shared/strv.h
+++ b/src/shared/strv.h
@@ -24,7 +24,7 @@
#include "util.h"
-void strv_free(char **l);
+char **strv_free(char **l);
DEFINE_TRIVIAL_CLEANUP_FUNC(char**, strv_free);
#define _cleanup_strv_free_ _cleanup_(strv_freep)