aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ecryptfs/messaging.c
diff options
context:
space:
mode:
authorTyler Hicks <tyhicks@canonical.com>2013-02-27 11:37:48 -0800
committerTyler Hicks <tyhicks@canonical.com>2013-02-27 11:41:18 -0800
commit1111eae90fb64a9d9ed133e410712f1e34fdce4a (patch)
tree6a98de6920ac6eb7e92d076edb3265bfc931be72 /fs/ecryptfs/messaging.c
parentecryptfs: ecryptfs_msg_ctx_alloc_to_free(): remove kfree() redundant null check (diff)
downloadlinux-dev-1111eae90fb64a9d9ed133e410712f1e34fdce4a.tar.xz
linux-dev-1111eae90fb64a9d9ed133e410712f1e34fdce4a.zip
eCryptfs: Fix redundant error check on ecryptfs_find_daemon_by_euid()
It is sufficient to check the return code of ecryptfs_find_daemon_by_euid(). If it returns 0, it always sets the daemon pointer to point to a valid ecryptfs_daemon. Signed-off-by: Tyler Hicks <tyhicks@canonical.com> Reported-by: Kees Cook <keescook@chromium.org>
Diffstat (limited to 'fs/ecryptfs/messaging.c')
-rw-r--r--fs/ecryptfs/messaging.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ecryptfs/messaging.c b/fs/ecryptfs/messaging.c
index d5c7297c5816..474051bd8d92 100644
--- a/fs/ecryptfs/messaging.c
+++ b/fs/ecryptfs/messaging.c
@@ -283,7 +283,7 @@ ecryptfs_send_message_locked(char *data, int data_len, u8 msg_type,
int rc;
rc = ecryptfs_find_daemon_by_euid(&daemon);
- if (rc || !daemon) {
+ if (rc) {
rc = -ENOTCONN;
goto out;
}