Browse Source

Squashfs: remove redundant length initialisation in squashfs_lookup

Signed-off-by: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougher 13 years ago
parent
commit
bd3a518948
1 changed files with 1 additions and 1 deletions
  1. 1 1
      fs/squashfs/namei.c

+ 1 - 1
fs/squashfs/namei.c

@@ -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);