Commit bd3a5189 authored by Phillip Lougher's avatar Phillip Lougher

Squashfs: remove redundant length initialisation in squashfs_lookup

Signed-off-by: default avatarPhillip Lougher <phillip@squashfs.org.uk>
parent 68a8c397
......@@ -144,7 +144,7 @@ static struct dentry *squashfs_lookup(struct inode *dir, struct dentry *dentry,
struct squashfs_dir_entry *dire;
u64 block = squashfs_i(dir)->start + msblk->directory_table;
int offset = squashfs_i(dir)->offset;
int err, length = 0, dir_count, size;
int err, length, dir_count, size;
TRACE("Entered squashfs_lookup [%llx:%x]\n", block, offset);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment