Skip to content

Commit 3be4aaf

Browse files
committed
Merge branch 'userns-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ebiederm/user-namespace
Pull userns bug fix from Eric Biederman: "Just a small fix to properly set the return code on error" * 'userns-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ebiederm/user-namespace: commoncap: Handle memory allocation failure.
2 parents 24cac70 + 1f57817 commit 3be4aaf

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

security/commoncap.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -449,6 +449,8 @@ int cap_inode_getsecurity(struct inode *inode, const char *name, void **buffer,
449449
magic |= VFS_CAP_FLAGS_EFFECTIVE;
450450
memcpy(&cap->data, &nscap->data, sizeof(__le32) * 2 * VFS_CAP_U32);
451451
cap->magic_etc = cpu_to_le32(magic);
452+
} else {
453+
size = -ENOMEM;
452454
}
453455
}
454456
kfree(tmpbuf);

0 commit comments

Comments
 (0)