Fix for the bugfix in r24.
This commit is contained in:
parent
c56383201c
commit
9ccae41ead
1 changed files with 1 additions and 1 deletions
|
@ -255,7 +255,7 @@ sub check_storage_engines {
|
||||||
$line =~ /([a-zA-Z_]*)\s*(.*)/;
|
$line =~ /([a-zA-Z_]*)\s*(.*)/;
|
||||||
my $engine = $1;
|
my $engine = $1;
|
||||||
my $size = $2;
|
my $size = $2;
|
||||||
if ($size =~ /^\d+$/) {
|
if ($size !~ /^\d+$/) {
|
||||||
$size = 0;
|
$size = 0;
|
||||||
}
|
}
|
||||||
if (defined $enginestats{$engine}) {
|
if (defined $enginestats{$engine}) {
|
||||||
|
|
Loading…
Reference in a new issue