mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 00:51:24 +03:00
core: make sure to reset the bus error struct before reusing it
Otherwise the call might fail, because the error structure is already initialized.
This commit is contained in:
parent
53f1841669
commit
5022ce7170
@ -1748,6 +1748,8 @@ int main(int argc, char *argv[]) {
|
||||
if (r == -EPERM) {
|
||||
log_debug("Default target could not be isolated, starting instead: %s", bus_error_message(&error, r));
|
||||
|
||||
sd_bus_error_free(&error);
|
||||
|
||||
r = manager_add_job(m, JOB_START, target, JOB_REPLACE, &error, &default_unit_job);
|
||||
if (r < 0) {
|
||||
log_emergency("Failed to start default target: %s", bus_error_message(&error, r));
|
||||
|
Loading…
Reference in New Issue
Block a user