We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed207d9 commit 10956dbCopy full SHA for 10956db
Kernel/Modules/fs_fat/dir.rs
@@ -117,7 +117,7 @@ enum DirEnt {
117
}
118
struct DirEntShort {
119
/// NUL-padded string with extention joined
120
- name: [u8; 11+1],
+ name: [u8; 8+1+3],
121
cluster: u32,
122
size: u32,
123
attributes: u8,
@@ -198,7 +198,7 @@ impl<'a> ::core::iter::Iterator for DirEnts<'a> {
198
let lower_ext = (ent.lcase & on_disk::CASE_LOWER_EXT ) != 0;
199
// 1. Decode name into a NUL-padded string
200
let (outname, _) = {
201
- let (mut outname, mut oidx) = ([0u8; 8+1+3], 0);
+ let (mut outname, mut oidx) = ([0u8; 12/*8+1+3*/], 0);
202
for iidx in 0 .. 8 {
203
if ent.name[iidx] != b' ' {
204
outname[oidx] = ent.name[iidx];
0 commit comments