[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1299556809-16194-1-git-send-email-vinaysawal@gmail.com>
Date: Mon, 7 Mar 2011 20:00:09 -0800
From: Vinay Sawal <vinaysawal@...il.com>
To: sfrench@...ba.org
Cc: linux-cifs@...r.kernel.org, samba-technical@...ts.samba.org,
linux-kernel@...r.kernel.org, Vinay Sawal <vinaysawal@...il.com>
Subject: [PATCH] FC: cifs: Initialized an uninitialized variable
Removed a compile time warning by initializing an uninitialized variable.
Signed-off-by: Vinay Sawal <vinaysawal@...il.com>
---
fs/cifs/file.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/fs/cifs/file.c b/fs/cifs/file.c
index e964b1c..a9e5901 100644
--- a/fs/cifs/file.c
+++ b/fs/cifs/file.c
@@ -1819,7 +1819,7 @@ static ssize_t
cifs_iovec_read(struct file *file, const struct iovec *iov,
unsigned long nr_segs, loff_t *poffset)
{
- int rc;
+ int rc = -EFAULT;
int xid;
ssize_t total_read;
unsigned int bytes_read = 0;
--
1.6.2.4
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists