浏览代码

[GFS2] fs/gfs2/dir.c:gfs2_dir_write_data(): don't use an uninitialized variable

In the "if (extlen)" case, "new" might be used uninitialized.

Looking at the code, it should be initialized to 0.

Spotted by the Coverity checker.

Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Adrian Bunk 18 年之前
父节点
当前提交
348acd48f0
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      fs/gfs2/dir.c

+ 1 - 1
fs/gfs2/dir.c

@@ -184,7 +184,7 @@ static int gfs2_dir_write_data(struct gfs2_inode *ip, const char *buf,
 	while (copied < size) {
 	while (copied < size) {
 		unsigned int amount;
 		unsigned int amount;
 		struct buffer_head *bh;
 		struct buffer_head *bh;
-		int new;
+		int new = 0;
 
 
 		amount = size - copied;
 		amount = size - copied;
 		if (amount > sdp->sd_sb.sb_bsize - o)
 		if (amount > sdp->sd_sb.sb_bsize - o)