bus-util: remove unnecessary initializations

This commit is contained in:
Yu Watanabe 2017-08-31 17:02:33 +09:00
parent 52610b020c
commit ae978b9f6c
2 changed files with 3 additions and 3 deletions

View File

@ -1917,7 +1917,7 @@ int bus_exec_context_set_transient_property(
return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Path %s is not absolute.", path);
if (mode != UNIT_CHECK) {
char *buf = NULL;
char *buf;
buf = strjoin(b ? "-" : "", path);
if (!buf)

View File

@ -734,7 +734,7 @@ int bus_print_property(const char *name, sd_bus_message *property, bool value, b
print_property(name, "%s", format_timespan(timespan, sizeof(timespan), u, 0));
} else if (streq(name, "RestrictNamespaces")) {
_cleanup_free_ char *s = NULL;
const char *result = NULL;
const char *result;
if ((u & NAMESPACE_FLAGS_ALL) == 0)
result = "yes";
@ -751,7 +751,7 @@ int bus_print_property(const char *name, sd_bus_message *property, bool value, b
print_property(name, "%s", result);
} else if (streq(name, "MountFlags")) {
const char *result = NULL;
const char *result;
result = mount_propagation_flags_to_string(u);
if (!result)