ecryptfs: Eliminate useless code

The variable lower_dentry is initialized twice to the same (side effect-free)
expression. Drop one initialization.

A simplified version of the semantic match that finds this problem is:
(http://coccinelle.lip6.fr/)

// <smpl>
@forall@
idexpression *x;
identifier f!=ERR_PTR;
@@

x = f(...)
... when != x
(
x = f(...,<+...x...+>,...)
|
* x = f(...)
)
// </smpl>

Signed-off-by: Julia Lawall <julia@diku.dk>
Signed-off-by: Tyler Hicks <tyhicks@linux.vnet.ibm.com>

authored by Julia Lawall and committed by Tyler Hicks 4aa25bcb fe0fc013

+1 -1
+1 -1
fs/ecryptfs/file.c
··· 158 158 struct dentry *ecryptfs_dentry = file->f_path.dentry; 159 159 /* Private value of ecryptfs_dentry allocated in 160 160 * ecryptfs_lookup() */ 161 - struct dentry *lower_dentry = ecryptfs_dentry_to_lower(ecryptfs_dentry); 161 + struct dentry *lower_dentry; 162 162 struct ecryptfs_file_info *file_info; 163 163 164 164 mount_crypt_stat = &ecryptfs_superblock_to_private(