[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20070922022600.GB2480@hacking>
Date: Sat, 22 Sep 2007 10:26:00 +0800
From: WANG Cong <xiyou.wangcong@...il.com>
To: LKML <linux-kernel@...r.kernel.org>
Cc: viro@...iv.linux.org.uk, Andrew Morton <akpm@...l.org>
Subject: [-rc7 Patch] fs/isofs/namei.c: mark variables as uninitialized_var
Fix may-be-used-uninitialized warnings.
Signed-off-by: WANG Cong <xiyou.wangcong@...il.com>
---
fs/isofs/namei.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Index: linux-2.6.23-rc7/fs/isofs/namei.c
===================================================================
--- linux-2.6.23-rc7.orig/fs/isofs/namei.c
+++ linux-2.6.23-rc7/fs/isofs/namei.c
@@ -158,7 +158,7 @@ isofs_find_entry(struct inode *dir, stru
struct dentry *isofs_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd)
{
int found;
- unsigned long block, offset;
+ unsigned long uninitialized_var(block), uninitialized_var(offset);
struct inode *inode;
struct page *page;
-
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