diff options
Diffstat (limited to 'src/shared')
-rw-r--r-- | src/shared/strv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/strv.c b/src/shared/strv.c index adeee282b7..607c221ae6 100644 --- a/src/shared/strv.c +++ b/src/shared/strv.c @@ -531,7 +531,7 @@ char **strv_parse_nulstr(const char *s, size_t l) { assert(s || l <= 0); if (l <= 0) - return strv_new(NULL, NULL); + return new0(char*, 1); for (p = s; p < s + l; p++) if (*p == 0) |