diff options
Diffstat (limited to 'src/uaccess.c')
-rw-r--r-- | src/uaccess.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/uaccess.c b/src/uaccess.c index 1683707977..435471e91a 100644 --- a/src/uaccess.c +++ b/src/uaccess.c @@ -28,7 +28,7 @@ int main(int argc, char *argv[]) { int r; - const char *path, *seat; + const char *path = NULL, *seat; char *p, *active_uid = NULL; unsigned long ul; bool changed_acl = false; @@ -49,6 +49,7 @@ int main(int argc, char *argv[]) { p = strappend("/run/systemd/seats/", seat); if (!p) { log_error("Out of memory."); + r = -ENOMEM; goto finish; } |