diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2000-08-11 00:27:27 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2000-08-11 00:27:27 +0000 |
commit | 66138cdc6bbd973426a9345c78c8120d9b446670 (patch) | |
tree | 63c1ec8ff6f3fff55453c752bbb26092921582a7 /perl-install/resize_fat/main.pm | |
parent | 40dcd0a59c0cce9b75f40b338799f5f28dd87cf6 (diff) | |
download | drakx-66138cdc6bbd973426a9345c78c8120d9b446670.tar drakx-66138cdc6bbd973426a9345c78c8120d9b446670.tar.gz drakx-66138cdc6bbd973426a9345c78c8120d9b446670.tar.bz2 drakx-66138cdc6bbd973426a9345c78c8120d9b446670.tar.xz drakx-66138cdc6bbd973426a9345c78c8120d9b446670.zip |
no_comment
Diffstat (limited to 'perl-install/resize_fat/main.pm')
-rw-r--r-- | perl-install/resize_fat/main.pm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/perl-install/resize_fat/main.pm b/perl-install/resize_fat/main.pm index c3eee9381..256031228 100644 --- a/perl-install/resize_fat/main.pm +++ b/perl-install/resize_fat/main.pm @@ -55,7 +55,11 @@ sub new($$$) { bless $fs, $type; } -sub DESTROY { resize_fat::c_rewritten::free_all() } +sub DESTROY { + my ($fs) = @_; + close $fs->{fd}; + resize_fat::c_rewritten::free_all(); +} #- copy all clusters >= <start_cluster> to a new place on the partition, less #- than <start_cluster>. Only copies files, not directories. |