diff options
author | Dan McGee <dan@archlinux.org> | 2013-12-08 14:33:45 -0600 |
---|---|---|
committer | David Strauss <david@davidstrauss.net> | 2013-12-08 13:15:59 -0800 |
commit | f92ae4968f070ef0ada61ba7cd585794fac404dd (patch) | |
tree | 14e90997e56cede46753127a81b86565743db20b | |
parent | e13bb5d2b133f9ae51c0a2d20aa51071c780e9ae (diff) |
Fix memory leak in stdout journal streams
Just as 'identifier' is strdup-ed and freed, we need to do the same for
unit_id.
-rw-r--r-- | src/journal/journald-stream.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/journal/journald-stream.c b/src/journal/journald-stream.c index 9ca26e26d6..091f59de17 100644 --- a/src/journal/journald-stream.c +++ b/src/journal/journald-stream.c @@ -340,6 +340,7 @@ void stdout_stream_free(StdoutStream *s) { #endif free(s->identifier); + free(s->unit_id); free(s); } |