diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/shared/util.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/shared/util.c b/src/shared/util.c index 85a570a2a4..9d254e0464 100644 --- a/src/shared/util.c +++ b/src/shared/util.c @@ -7113,10 +7113,10 @@ int unquote_many_words(const char **p, ...) { if (r < 0) { int j; - for (j = 0; j < c; j++) { + for (j = 0; j < c; j++) free(l[j]); - return r; - } + + return r; } if (r == 0) |