Fix cluster leak when truncating files
This commit is contained in:
parent
7709f5e6f6
commit
a760b4b6d0
@ -361,8 +361,11 @@ impl <'a, 'b> ClusterIterator<'a, 'b> {
|
|||||||
pub(crate) fn truncate(&mut self) -> io::Result<()> {
|
pub(crate) fn truncate(&mut self) -> io::Result<()> {
|
||||||
match self.cluster {
|
match self.cluster {
|
||||||
Some(n) => {
|
Some(n) => {
|
||||||
write_fat(&mut self.fat, self.fat_type, n, FatValue::EndOfChain)?;
|
// Move to the next cluster
|
||||||
self.next();
|
self.next();
|
||||||
|
// Mark previous cluster as end of chain
|
||||||
|
write_fat(&mut self.fat, self.fat_type, n, FatValue::EndOfChain)?;
|
||||||
|
// Free rest of chain
|
||||||
self.free()
|
self.free()
|
||||||
},
|
},
|
||||||
None => Ok(()),
|
None => Ok(()),
|
||||||
|
Loading…
Reference in New Issue
Block a user