mirror of
https://github.com/systemd/systemd.git
synced 2025-03-22 06:50:18 +03:00
fstab-util: join 'filtered' only if requested by caller
This commit is contained in:
parent
66584a9335
commit
2f3d986053
@ -235,9 +235,11 @@ int fstab_filter_options(
|
||||
return r;
|
||||
}
|
||||
|
||||
filtered = strv_join_full(filtered_strv, ",", NULL, /* escape_separator = */ true);
|
||||
if (!filtered)
|
||||
return -ENOMEM;
|
||||
if (ret_filtered) {
|
||||
filtered = strv_join_full(filtered_strv, ",", NULL, /* escape_separator = */ true);
|
||||
if (!filtered)
|
||||
return -ENOMEM;
|
||||
}
|
||||
} else
|
||||
for (const char *word = opts;;) {
|
||||
const char *end = word;
|
||||
|
Loading…
x
Reference in New Issue
Block a user