summaryrefslogtreecommitdiff
path: root/src/test/test-strv.c
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2016-07-17 15:25:01 -0400
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2016-07-17 15:34:57 -0400
commitb60df13b39c0237f9cb1114076464d2431e6bee5 (patch)
tree3eebb325b99c3a2010ffd694b91312fdd7a6e9ec /src/test/test-strv.c
parentf41794d0360b8e3a705db58df14957ceb37c6f27 (diff)
basic/strv: add an extra NUL after strings in strv_make_nulstr
strv_make_nulstr was creating a nulstr which was not a valid nulstr, because it was missing the terminating NUL. This didn't cause any issues, because strv_parse_nulstr correctly parsed the result, using the separately specified length. But it's confusing to have something called nulstr which really isn't. It is likely that somebody will try to use strv_make_nulstr() in some other place, incorrectly. This patch changes strv_parse_nulstr() to produce a valid nulstr, and changes the output length parameter to be the minimum number of bytes which can be later on parsed by strv_parse_nulstr(). This allows the only user in ask-password-api to be slightly simplified. Based-on-patch-by: Jean-Sébastien Bour <jean-sebastien@bour.name> Fixes #3689.
Diffstat (limited to 'src/test/test-strv.c')
-rw-r--r--src/test/test-strv.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/test/test-strv.c b/src/test/test-strv.c
index 91265c9cba..841a36782f 100644
--- a/src/test/test-strv.c
+++ b/src/test/test-strv.c
@@ -659,9 +659,8 @@ static void test_strv_make_nulstr_one(char **l) {
assert_se(m == n);
assert_se(memcmp(b, c, m) == 0);
- NULSTR_FOREACH(s, b) {
+ NULSTR_FOREACH(s, b)
assert_se(streq(s, l[i++]));
- }
assert_se(i == strv_length(l));
}