We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9eb2c8 commit 64cc804Copy full SHA for 64cc804
src/lib.rs
@@ -177,8 +177,6 @@ where
177
VolumeAlreadyOpen,
178
/// Volume is opened in read only mode
179
VolumeReadOnly,
180
- /// Fat table is longer than supported
181
- FatTableTooLarge,
182
/// We can't do that yet
183
Unsupported,
184
/// Tried to read beyond end of file
src/volume_mgr.rs
@@ -359,9 +359,6 @@ where
359
volume: &FatVolume,
360
dirty: bool,
361
) -> Result<(), Error<D::Error>> {
362
- if volume.fat_size > BlockCount(512) {
363
- return Err(Error::FatTableTooLarge);
364
- }
365
let mut blocks = [Block::new()];
366
self.block_device.read(
367
&mut blocks,
0 commit comments