From 33c2ce7b200747c172d4899c717a8e9097d84659 Mon Sep 17 00:00:00 2001 From: David Herrmann Date: Tue, 17 Mar 2015 12:20:31 +0100 Subject: strv: return NULL from strv_free() We always return NULL/invalid-object from destructors, fix strv_free() to do the same. --- src/shared/strv.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/shared/strv.h') diff --git a/src/shared/strv.h b/src/shared/strv.h index 518c4c2aa8..a80ccd6427 100644 --- a/src/shared/strv.h +++ b/src/shared/strv.h @@ -31,7 +31,7 @@ char *strv_find(char **l, const char *name) _pure_; char *strv_find_prefix(char **l, const char *name) _pure_; char *strv_find_startswith(char **l, const char *name) _pure_; -void strv_free(char **l); +char **strv_free(char **l); DEFINE_TRIVIAL_CLEANUP_FUNC(char**, strv_free); #define _cleanup_strv_free_ _cleanup_(strv_freep) -- cgit v1.2.3-54-g00ecf