From: Daan De Meyer Date: Fri, 11 Nov 2022 10:26:54 +0000 (+0100) Subject: strv: Make sure strv_make_nulstr() always returns a valid nulstr X-Git-Tag: v253-rc1~548 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5ea173a91b2093664a9ebb9add678edd6f5d1efd;p=thirdparty%2Fsystemd.git strv: Make sure strv_make_nulstr() always returns a valid nulstr strv_make_nulstr() is documented to always return a valid nulstr, but if the input is `NULL` we return a string terminated with only a single NUL terminator, so let's fix that and always terminate the resulting string with two NUL bytes. --- diff --git a/src/basic/strv.c b/src/basic/strv.c index eea34ca68d9..24fc56a1a5c 100644 --- a/src/basic/strv.c +++ b/src/basic/strv.c @@ -721,7 +721,7 @@ int strv_make_nulstr(char * const *l, char **ret, size_t *ret_size) { } if (!m) { - m = new0(char, 1); + m = new0(char, 2); if (!m) return -ENOMEM; n = 1; @@ -730,11 +730,9 @@ int strv_make_nulstr(char * const *l, char **ret, size_t *ret_size) { m[n] = '\0'; assert(n > 0); - *ret = m; + *ret = TAKE_PTR(m); *ret_size = n - 1; - m = NULL; - return 0; }