Browse Source

Bug #48918 MTR uses an un-initialized value in comparison

mysqld->{proc} not defined for an embedded server
Check only if {proc} defined
pull/47/merge
Bjorn Munch 16 years ago
parent
commit
15d5390010
  1. 2
      mysql-test/mysql-test-run.pl

2
mysql-test/mysql-test-run.pl

@ -3893,7 +3893,7 @@ sub check_expected_crash_and_restart {
foreach my $mysqld ( mysqlds() )
{
next unless ( $mysqld->{proc} eq $proc );
next unless ( $mysqld->{proc} and $mysqld->{proc} eq $proc );
# Check if crash expected by looking at the .expect file
# in var/tmp

Loading…
Cancel
Save