diff options
Diffstat (limited to 'perl-install/resize_fat/any.pm')
| -rw-r--r-- | perl-install/resize_fat/any.pm | 12 | 
1 files changed, 10 insertions, 2 deletions
| diff --git a/perl-install/resize_fat/any.pm b/perl-install/resize_fat/any.pm index 59ec02098..fc3c438eb 100644 --- a/perl-install/resize_fat/any.pm +++ b/perl-install/resize_fat/any.pm @@ -1,4 +1,4 @@ -package resize_fat::any; # $Id$ +package resize_fat::any;  use diagnostics;  use strict; @@ -86,7 +86,15 @@ sub max_size($) {  sub used_size($) {      my ($fs) = @_; -    my $used_cluster_count = max(last_used($fs), min_cluster_count($fs)); +    my $last_used; +    my $used_cluster_count; +    +    eval { $last_used = last_used($fs) }; +    if ($@) { +	# Empty FAT +	$last_used = 0; +    } +    $used_cluster_count = max($last_used, min_cluster_count($fs));      $used_cluster_count * divide($fs->{cluster_size}, $SECTORSIZE) +  	divide($fs->{cluster_offset}, $SECTORSIZE); | 
