systemctl: minor coding style fixes

This commit is contained in:
Lennart Poettering 2012-09-13 22:42:22 +02:00
parent 37370d0cbe
commit a33fdebb30
1 changed files with 13 additions and 11 deletions

View File

@ -3552,23 +3552,25 @@ finish:
}
static int mangle_names(char **original_names, char ***mangled_names) {
char **names_it = NULL;
char **name = NULL;
char **i, **l, **name;
(*mangled_names) = new(char*, strv_length(original_names)+1);
if(!(*mangled_names))
l = new(char*, strv_length(original_names) + 1);
if (!l)
return log_oom();
names_it = *mangled_names;
i = l;
STRV_FOREACH(name, original_names) {
char *n = unit_name_mangle(*name);
(*names_it) = n ? n : strdup(*name);
if(!(*names_it))
*i = unit_name_mangle(*name);
if (!*i) {
strv_free(l);
return log_oom();
names_it++;
}
i++;
}
*names_it = NULL;
*i = NULL;
*mangled_names = l;
return 0;
}