Commit db9a369e authored by Jayachandran C's avatar Jayachandran C Committed by Linus Torvalds

[PATCH] UDF: Fix issues reported by Coverity in namei.c

This patch fixes an issue in fs/udf/namei.c reported by Coverity:

Error reported(1776)
CID: 1776
Checker: UNUSED_VALUE (help)
File: fs/udf/namei.c
Function: udf_lookup
Description: Pointer returned from "udf_find_entry" is never used

Patch description:
   remove unused variable  fi.
Signed-off-by: default avatarJayachandran C. <c.jayachandran@gmail.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 99603966
...@@ -296,7 +296,7 @@ static struct dentry * ...@@ -296,7 +296,7 @@ static struct dentry *
udf_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd) udf_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd)
{ {
struct inode *inode = NULL; struct inode *inode = NULL;
struct fileIdentDesc cfi, *fi; struct fileIdentDesc cfi;
struct udf_fileident_bh fibh; struct udf_fileident_bh fibh;
if (dentry->d_name.len > UDF_NAME_LEN-2) if (dentry->d_name.len > UDF_NAME_LEN-2)
...@@ -318,7 +318,7 @@ udf_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd) ...@@ -318,7 +318,7 @@ udf_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd)
else else
#endif /* UDF_RECOVERY */ #endif /* UDF_RECOVERY */
if ((fi = udf_find_entry(dir, dentry, &fibh, &cfi))) if (udf_find_entry(dir, dentry, &fibh, &cfi))
{ {
if (fibh.sbh != fibh.ebh) if (fibh.sbh != fibh.ebh)
udf_release_data(fibh.ebh); udf_release_data(fibh.ebh);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment