aboutsummaryrefslogtreecommitdiffstats
path: root/fs/squashfs/dir.c
diff options
context:
space:
mode:
authorPhillip Lougher <phillip@squashfs.org.uk>2012-03-06 18:02:49 -0500
committerPhillip Lougher <phillip@squashfs.org.uk>2012-03-09 22:01:01 -0500
commit68a8c397bf1bc16640e87d229025ffd4e4b54e6c (patch)
treeac5193c774e945d32cdd7e1251a9b080e3a78b05 /fs/squashfs/dir.c
parentec9267b61dca524ccd111b593dcfa4bbcb81ecd6 (diff)
Squashfs: remove redundant length initialisation in squashfs_readdir
Signed-off-by: Phillip Lougher <phillip@squashfs.org.uk>
Diffstat (limited to 'fs/squashfs/dir.c')
-rw-r--r--fs/squashfs/dir.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/squashfs/dir.c b/fs/squashfs/dir.c
index 4a812bfcdd5e..7142a6fd28d3 100644
--- a/fs/squashfs/dir.c
+++ b/fs/squashfs/dir.c
@@ -105,7 +105,7 @@ static int squashfs_readdir(struct file *file, void *dirent, filldir_t filldir)
105 struct inode *inode = file->f_dentry->d_inode; 105 struct inode *inode = file->f_dentry->d_inode;
106 struct squashfs_sb_info *msblk = inode->i_sb->s_fs_info; 106 struct squashfs_sb_info *msblk = inode->i_sb->s_fs_info;
107 u64 block = squashfs_i(inode)->start + msblk->directory_table; 107 u64 block = squashfs_i(inode)->start + msblk->directory_table;
108 int offset = squashfs_i(inode)->offset, length = 0, dir_count, size, 108 int offset = squashfs_i(inode)->offset, length, dir_count, size,
109 type, err; 109 type, err;
110 unsigned int inode_number; 110 unsigned int inode_number;
111 struct squashfs_dir_header dirh; 111 struct squashfs_dir_header dirh;