]> git.proxmox.com Git - systemd.git/blobdiff - src/journal-remote/journal-upload-journal.c
Imported Upstream version 227
[systemd.git] / src / journal-remote / journal-upload-journal.c
index 5fd639a76abbc69ce5ce4f699a77d8d12dd91aff..6b3ad924a736126b51b6580a6941fe1554fab1a2 100644 (file)
@@ -17,12 +17,11 @@ static ssize_t write_entry(char *buf, size_t size, Uploader *u) {
 
         assert(size <= SSIZE_MAX);
 
-        while (true) {
+        for (;;) {
 
                 switch(u->entry_state) {
                 case ENTRY_CURSOR: {
-                        free(u->current_cursor);
-                        u->current_cursor = NULL;
+                        u->current_cursor = mfree(u->current_cursor);
 
                         r = sd_journal_get_cursor(u->journal, &u->current_cursor);
                         if (r < 0)
@@ -375,10 +374,9 @@ int open_journal_for_upload(Uploader *u,
 
         if (cursor) {
                 r = sd_journal_seek_cursor(j, cursor);
-                if (r < 0) {
+                if (r < 0)
                         return log_error_errno(r, "Failed to seek to cursor %s: %m",
                                                cursor);
-                }
         }
 
         return process_journal_input(u, 1 + !!after_cursor);