From bef89518003a37f0fbd2f53beaa6bb7d01efed45 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Thu, 18 Apr 2013 10:16:17 +0200 Subject: [PATCH] sd-login.c: fixup for d70964d0 p pointer is not _cleanup_free_ --- src/login/sd-login.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/login/sd-login.c b/src/login/sd-login.c index 45523921b..30e07a932 100644 --- a/src/login/sd-login.c +++ b/src/login/sd-login.c @@ -74,7 +74,8 @@ _public_ int sd_pid_get_machine_name(pid_t pid, char **name) { _public_ int sd_pid_get_owner_uid(pid_t pid, uid_t *uid) { int r; - _cleanup_free_ char *root = NULL, *cgroup = NULL, *p = NULL, *cc = NULL; + _cleanup_free_ char *root = NULL, *cgroup = NULL, *cc = NULL; + char *p; struct stat st; if (pid < 0) -- 2.30.2