diff options
author | Phillip Lougher <phillip@squashfs.org.uk> | 2012-03-06 23:02:49 +0000 |
---|---|---|
committer | Phillip Lougher <phillip@squashfs.org.uk> | 2012-03-10 03:01:01 +0000 |
commit | 68a8c397bf1bc16640e87d229025ffd4e4b54e6c (patch) | |
tree | ac5193c774e945d32cdd7e1251a9b080e3a78b05 /fs/squashfs | |
parent | ec9267b61dca524ccd111b593dcfa4bbcb81ecd6 (diff) | |
download | kernel_goldelico_gta04-68a8c397bf1bc16640e87d229025ffd4e4b54e6c.zip kernel_goldelico_gta04-68a8c397bf1bc16640e87d229025ffd4e4b54e6c.tar.gz kernel_goldelico_gta04-68a8c397bf1bc16640e87d229025ffd4e4b54e6c.tar.bz2 |
Squashfs: remove redundant length initialisation in squashfs_readdir
Signed-off-by: Phillip Lougher <phillip@squashfs.org.uk>
Diffstat (limited to 'fs/squashfs')
-rw-r--r-- | fs/squashfs/dir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/squashfs/dir.c b/fs/squashfs/dir.c index 4a812bf..7142a6f 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) 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; |