소스 검색

Squashfs: remove redundant length initialisation in squashfs_readdir

Signed-off-by: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougher 13 년 전
부모
커밋
68a8c397bf
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      fs/squashfs/dir.c

+ 1 - 1
fs/squashfs/dir.c

@@ -105,7 +105,7 @@ static int squashfs_readdir(struct file *file, void *dirent, filldir_t filldir)
 	struct inode *inode = file->f_dentry->d_inode;
 	struct squashfs_sb_info *msblk = inode->i_sb->s_fs_info;
 	u64 block = squashfs_i(inode)->start + msblk->directory_table;
-	int offset = squashfs_i(inode)->offset, length = 0, dir_count, size,
+	int offset = squashfs_i(inode)->offset, length, dir_count, size,
 				type, err;
 	unsigned int inode_number;
 	struct squashfs_dir_header dirh;