commit | c2e3f5d5f4620bb6568bc559f712ce80222e20cb | [log] [tgz] |
---|---|---|
author | Al Viro <viro@zeniv.linux.org.uk> | Tue Sep 02 17:31:28 2014 -0400 |
committer | Al Viro <viro@zeniv.linux.org.uk> | Thu Oct 09 02:39:12 2014 -0400 |
tree | ffc736e09e60a38947a3aa4723c353f2963e6e44 | |
parent | 765d368217715c794f767d396d8cea16502d823f [diff] [blame] |
ecryptfs: ->f_op is never NULL Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
diff --git a/fs/ecryptfs/file.c b/fs/ecryptfs/file.c index db0fad3..4ffa35e 100644 --- a/fs/ecryptfs/file.c +++ b/fs/ecryptfs/file.c
@@ -327,7 +327,7 @@ struct file *lower_file = ecryptfs_file_to_lower(file); long rc = -ENOIOCTLCMD; - if (lower_file->f_op && lower_file->f_op->compat_ioctl) + if (lower_file->f_op->compat_ioctl) rc = lower_file->f_op->compat_ioctl(lower_file, cmd, arg); return rc; }