Coverity reports a warning due to uninitialized attr structure in one
code path.

Reported by Coverity (CID 728535)

Signed-off-by: Steve French <[email protected]>
Reviewed-by: Jeff Layton <[email protected]>
---
 fs/cifs/inode.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/fs/cifs/inode.c b/fs/cifs/inode.c
index 2d4f372..3e126d7 100644
--- a/fs/cifs/inode.c
+++ b/fs/cifs/inode.c
@@ -771,6 +771,8 @@ cifs_get_inode_info(struct inode **inode, const
char *full_path,
                 cifs_buf_release(srchinf->ntwrk_buf_start);
             }
             kfree(srchinf);
+            if (rc)
+                goto cgii_exit;
     } else
         goto cgii_exit;


-- 
Thanks,

Steve
--
To unsubscribe from this list: send the line "unsubscribe linux-cifs" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to