Skip to content

Commit

Permalink
Add missing DBUG_RETURN
Browse files Browse the repository at this point in the history
  • Loading branch information
cvicentiu committed Mar 3, 2017
1 parent 606a4a4 commit f480677
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sql/rpl_mi.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1430,7 +1430,7 @@ uint any_slave_sql_running()
if (unlikely(shutdown_in_progress || !master_info_index))
{
mysql_mutex_unlock(&LOCK_active_mi);
return 1;
DBUG_RETURN(1);
}
hash= &master_info_index->master_info_hash;
for (uint i= 0; i< hash->records; ++i)
Expand Down

0 comments on commit f480677

Please sign in to comment.