summaryrefslogtreecommitdiff
path: root/src/journal/journalctl.c
diff options
context:
space:
mode:
authorDaniel Mack <github@zonque.org>2015-07-31 20:17:33 +0200
committerDaniel Mack <github@zonque.org>2015-07-31 20:17:33 +0200
commit6f7897f9d2bd5ec7d6a9be8ad700661bb17a21cf (patch)
treef03d3e452e8433c350616f6ffc7d28b08bd23335 /src/journal/journalctl.c
parent97d09a62836e1c6f807837cf47e83c970cecb06b (diff)
parent97b11eedff9d2e17101ad453caf9e48b73246719 (diff)
Merge pull request #814 from dvdhrm/mfree
tree-wide: introduce mfree()
Diffstat (limited to 'src/journal/journalctl.c')
-rw-r--r--src/journal/journalctl.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/journal/journalctl.c b/src/journal/journalctl.c
index 073cc77711..355c4f1ee3 100644
--- a/src/journal/journalctl.c
+++ b/src/journal/journalctl.c
@@ -1259,8 +1259,7 @@ static int add_units(sd_journal *j) {
}
}
- strv_free(patterns);
- patterns = NULL;
+ patterns = strv_free(patterns);
STRV_FOREACH(i, arg_user_units) {
_cleanup_free_ char *u = NULL;