mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
Bug #48918 MTR uses an un-initialized value in comparison
mysqld->{proc} not defined for an embedded server Check only if {proc} defined
This commit is contained in:
@@ -3893,7 +3893,7 @@ sub check_expected_crash_and_restart {
|
|||||||
|
|
||||||
foreach my $mysqld ( mysqlds() )
|
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
|
# Check if crash expected by looking at the .expect file
|
||||||
# in var/tmp
|
# in var/tmp
|
||||||
|
Reference in New Issue
Block a user