24 lines
1.0 KiB
Diff
24 lines
1.0 KiB
Diff
|
From 7d73c1343be02a59b17de0cd34375deeb815d89c Mon Sep 17 00:00:00 2001
|
||
|
From: Lennart Poettering <lennart@poettering.net>
|
||
|
Date: Tue, 20 Nov 2012 00:19:27 +0100
|
||
|
Subject: [PATCH] journald: fix bad memory access
|
||
|
|
||
|
https://bugzilla.redhat.com/show_bug.cgi?id=875653
|
||
|
---
|
||
|
src/journal/journald-server.c | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
Index: systemd-195/src/journal/journald.c
|
||
|
===================================================================
|
||
|
--- systemd-195.orig/src/journal/journald.c
|
||
|
+++ systemd-195/src/journal/journald.c
|
||
|
@@ -342,7 +342,7 @@ static void server_rotate(Server *s) {
|
||
|
HASHMAP_FOREACH_KEY(f, k, s->user_journals, i) {
|
||
|
r = journal_file_rotate(&f, s->compress, s->seal);
|
||
|
if (r < 0)
|
||
|
- if (f->path)
|
||
|
+ if (f)
|
||
|
log_error("Failed to rotate %s: %s", f->path, strerror(-r));
|
||
|
else
|
||
|
log_error("Failed to create user journal: %s", strerror(-r));
|