1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2024-12-24 21:34:08 +03:00

machine: don't return uninitialized variable

Repotred by Ronny Chevalier
This commit is contained in:
Tom Gundersen 2014-07-06 14:12:28 +02:00
parent 108e8cd11e
commit f14aa1f1b2

View File

@ -371,7 +371,7 @@ static int machine_stop_scope(Machine *m) {
free(m->scope_job);
m->scope_job = job;
return r;
return 0;
}
int machine_stop(Machine *m) {