diff options
author | Stefan Brüns <stefan.bruens@rwth-aachen.de> | 2016-09-11 22:51:39 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-09-23 08:55:55 -0400 |
commit | ed76f912777066c788ae7e9cfb1d5e19e8c35274 (patch) | |
tree | 3b05ed06dc21e68130f56be2dc528b4052329ab2 /fs | |
parent | 201c9d884dcadb4e76981c30e9915f73de2d09b5 (diff) |
fs/fat: Remove two statements without effect
fatlength is a local variable which is no more used after the assignment.
s_name is not used in the function, save the strncpy.
Signed-off-by: Stefan Brüns <stefan.bruens@rwth-aachen.de>
Acked-by: Lukasz Majewski <l.majewski@samsung.com>
Acked-by: Stephen Warren <swarren@nvidia.com>
Reviewed-by: Benoît Thébaudeau <benoit.thebaudeau.dev@gmail.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/fat/fat_write.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/fs/fat/fat_write.c b/fs/fat/fat_write.c index eb3a9169484..961ccd8e246 100644 --- a/fs/fat/fat_write.c +++ b/fs/fat/fat_write.c @@ -183,7 +183,6 @@ static __u32 get_fatent_value(fsdata *mydata, __u32 entry) if (getsize > fatlength) getsize = fatlength; - fatlength *= mydata->sect_size; /* We want it in bytes now */ startblock += mydata->fat_sect; /* Offset from start of disk */ /* Write back the fatbuf to the disk */ @@ -326,10 +325,8 @@ fill_dir_slot(fsdata *mydata, dir_entry **dentptr, const char *l_name) dir_slot *slotptr = (dir_slot *)get_contents_vfatname_block; __u8 counter = 0, checksum; int idx = 0, ret; - char s_name[16]; - /* Get short file name and checksum value */ - strncpy(s_name, (*dentptr)->name, 16); + /* Get short file name checksum value */ checksum = mkcksum((*dentptr)->name, (*dentptr)->ext); do { |