Skip to content

Commit

Permalink
exfat: remove double assignment in exfat_find
Browse files Browse the repository at this point in the history
Remove double assignment in exfat_find.

Signed-off-by: Namjae Jeon <[email protected]>
  • Loading branch information
namjaejeon committed Oct 27, 2024
1 parent e0555f2 commit 7c938a7
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion namei.c
Original file line number Diff line number Diff line change
Expand Up @@ -655,7 +655,6 @@ static int exfat_find(struct inode *dir, struct qstr *qname,

info->type = exfat_get_entry_type(ep);
info->attr = le16_to_cpu(ep->dentry.file.attr);
info->size = le64_to_cpu(ep2->dentry.stream.valid_size);
info->valid_size = le64_to_cpu(ep2->dentry.stream.valid_size);
info->size = le64_to_cpu(ep2->dentry.stream.size);

Expand Down

0 comments on commit 7c938a7

Please sign in to comment.