mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Fixed missing DBUG_RETURN
This commit is contained in:
@ -1430,7 +1430,7 @@ uint any_slave_sql_running()
|
|||||||
if (unlikely(shutdown_in_progress || !master_info_index))
|
if (unlikely(shutdown_in_progress || !master_info_index))
|
||||||
{
|
{
|
||||||
mysql_mutex_unlock(&LOCK_active_mi);
|
mysql_mutex_unlock(&LOCK_active_mi);
|
||||||
return 1;
|
DBUG_RETURN(1);
|
||||||
}
|
}
|
||||||
hash= &master_info_index->master_info_hash;
|
hash= &master_info_index->master_info_hash;
|
||||||
for (uint i= 0; i< hash->records; ++i)
|
for (uint i= 0; i< hash->records; ++i)
|
||||||
|
Reference in New Issue
Block a user