summaryrefslogtreecommitdiffstats
path: root/lib/path.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/path.c')
-rw-r--r--lib/path.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/path.c b/lib/path.c
index 00152f54c..b3d66a45d 100644
--- a/lib/path.c
+++ b/lib/path.c
@@ -308,6 +308,9 @@ int ul_path_accessf(struct path_cxt *pc, int mode, const char *path, ...)
p = ul_path_mkpath(pc, path, ap);
va_end(ap);
+ if (!p)
+ return -errno;
+
return ul_path_access(pc, mode, p);
}