diff options
Diffstat (limited to 'src/strv.c')
-rw-r--r-- | src/strv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/strv.c b/src/strv.c index 01464e1e33..a66369602b 100644 --- a/src/strv.c +++ b/src/strv.c @@ -264,7 +264,7 @@ char **strv_split_quoted(const char *s) { i = 0; FOREACH_WORD_QUOTED(w, l, s, state) - if (!(r[i++] = strndup(w, l))) { + if (!(r[i++] = cunescape_length(w, l))) { strv_free(r); return NULL; } |