Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bd3a5189 authored by Phillip Lougher's avatar Phillip Lougher
Browse files

Squashfs: remove redundant length initialisation in squashfs_lookup

parent 68a8c397
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);