Skip to content

Commit 10956db

Browse files
committed
fs_fat - Work around rustc ICE rust-lang/rust#71344
1 parent ed207d9 commit 10956db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Kernel/Modules/fs_fat/dir.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ enum DirEnt {
117117
}
118118
struct DirEntShort {
119119
/// NUL-padded string with extention joined
120-
name: [u8; 11+1],
120+
name: [u8; 8+1+3],
121121
cluster: u32,
122122
size: u32,
123123
attributes: u8,
@@ -198,7 +198,7 @@ impl<'a> ::core::iter::Iterator for DirEnts<'a> {
198198
let lower_ext = (ent.lcase & on_disk::CASE_LOWER_EXT ) != 0;
199199
// 1. Decode name into a NUL-padded string
200200
let (outname, _) = {
201-
let (mut outname, mut oidx) = ([0u8; 8+1+3], 0);
201+
let (mut outname, mut oidx) = ([0u8; 12/*8+1+3*/], 0);
202202
for iidx in 0 .. 8 {
203203
if ent.name[iidx] != b' ' {
204204
outname[oidx] = ent.name[iidx];

0 commit comments

Comments
 (0)