Commit cf437f6b authored by Marko Mäkelä's avatar Marko Mäkelä

Fix GCC -Og -Wmaybe-uninitialized

This fixes up commit dd5f4b36
parent c4d79399
......@@ -2307,7 +2307,7 @@ void ha_maria::start_bulk_insert(ha_rows rows, uint flags)
int ha_maria::end_bulk_insert()
{
int first_error, first_errno, error;
int first_error, first_errno= 0, error;
my_bool abort= file->s->deleting, empty_table= 0;
uint enable_index_mode= HA_KEY_SWITCH_NONUNIQ_SAVE;
DBUG_ENTER("ha_maria::end_bulk_insert");
......
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