bus: creds - ignore EINVAL when acessing the (inactive) LSM /proc interface

This commit is contained in:
Kay Sievers
2013-11-29 11:52:22 +01:00
parent 27df44a2c6
commit 76037baee0

View File

@@ -599,7 +599,7 @@ int bus_creds_add_more(sd_bus_creds *c, uint64_t mask, pid_t pid, pid_t tid) {
p = procfs_file_alloca(pid, "attr/current");
r = read_one_line_file(p, &c->label);
if (r < 0 && r != -ENOENT)
if (r < 0 && r != -ENOENT && r != -EINVAL)
return r;
else if (r >= 0)
c->mask |= SD_BUS_CREDS_SELINUX_CONTEXT;