summaryrefslogtreecommitdiff
path: root/src/shared/strv.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/shared/strv.c')
-rw-r--r--src/shared/strv.c3
1 files changed, 2 insertions, 1 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) {