[systemd-commits] src/systemctl
Thomas H.P. Andersen
phomes at kemper.freedesktop.org
Wed Dec 3 15:15:16 PST 2014
src/systemctl/systemctl.c | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
New commits:
commit 652212b0c2b60b9ef9b2e24eae82401f880fa21a
Author: Thomas Hindoe Paaboel Andersen <phomes at gmail.com>
Date: Thu Dec 4 00:14:37 2014 +0100
systemctl: fix a leak
diff --git a/src/systemctl/systemctl.c b/src/systemctl/systemctl.c
index 74af772..c60bab4 100644
--- a/src/systemctl/systemctl.c
+++ b/src/systemctl/systemctl.c
@@ -5753,8 +5753,11 @@ static int create_edit_temp_file(const char *new_path, const char *original_path
return log_oom();
r = mkdir_parents(new_path, 0755);
- if (r < 0)
- return log_error_errno(r, "Failed to create directories for %s: %m", new_path);
+ if (r < 0) {
+ log_error_errno(r, "Failed to create directories for %s: %m", new_path);
+ free(t);
+ return r;
+ }
r = copy_file(original_path, t, 0, 0644);
if (r == -ENOENT) {
More information about the systemd-commits
mailing list