Commit ce16c4fb authored by Dmitry Lenev's avatar Dmitry Lenev

Suppress false-positive uninitialized variable use

warnings in Event_queue::get_top_for_execution_if_time()
method which has caused -Werror build to fail.
parent 602a2225
......@@ -568,8 +568,8 @@ Event_queue::get_top_for_execution_if_time(THD *thd,
{
bool ret= FALSE;
*event_name= NULL;
my_time_t last_executed;
int status;
my_time_t UNINIT_VAR(last_executed);
int UNINIT_VAR(status);
DBUG_ENTER("Event_queue::get_top_for_execution_if_time");
LOCK_QUEUE_DATA();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment