From 17a20d64912e95ea90380381f85e9ef7fd56ff67 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Tue, 6 Jan 2015 00:31:38 +0100 Subject: [PATCH] machined: simplification --- src/machine/machine.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/machine/machine.c b/src/machine/machine.c index b28311879..6c01617cf 100644 --- a/src/machine/machine.c +++ b/src/machine/machine.c @@ -202,6 +202,9 @@ int machine_save(Machine *m) { goto finish; } + free(temp_path); + temp_path = NULL; + if (m->unit) { char *sl; @@ -213,12 +216,11 @@ int machine_save(Machine *m) { } finish: - if (r < 0) { - if (temp_path) - unlink(temp_path); + if (temp_path) + unlink(temp_path); + if (r < 0) log_error_errno(r, "Failed to save machine data %s: %m", m->state_file); - } return r; } -- 2.30.2