[systemd-commits] src/journal
Lennart Poettering
lennart at kemper.freedesktop.org
Thu Aug 16 08:39:35 PDT 2012
src/journal/journal-verify.c | 3 +++
1 file changed, 3 insertions(+)
New commits:
commit 1137e6c73ba4456f6bb054a2a45f80972f568586
Author: Lennart Poettering <lennart at poettering.net>
Date: Thu Aug 16 17:39:00 2012 +0200
journal: fix variable initialization
diff --git a/src/journal/journal-verify.c b/src/journal/journal-verify.c
index ad96cca..55ca52a 100644
--- a/src/journal/journal-verify.c
+++ b/src/journal/journal-verify.c
@@ -610,6 +610,7 @@ int journal_file_verify(JournalFile *f, const char *key) {
data_fd = mkostemp(data_path, O_CLOEXEC);
if (data_fd < 0) {
log_error("Failed to create data file: %m");
+ r = -errno;
goto fail;
}
unlink(data_path);
@@ -617,6 +618,7 @@ int journal_file_verify(JournalFile *f, const char *key) {
entry_fd = mkostemp(entry_path, O_CLOEXEC);
if (entry_fd < 0) {
log_error("Failed to create entry file: %m");
+ r = -errno;
goto fail;
}
unlink(entry_path);
@@ -624,6 +626,7 @@ int journal_file_verify(JournalFile *f, const char *key) {
entry_array_fd = mkostemp(entry_array_path, O_CLOEXEC);
if (entry_array_fd < 0) {
log_error("Failed to create entry array file: %m");
+ r = -errno;
goto fail;
}
unlink(entry_array_path);
More information about the systemd-commits
mailing list