Skip to content

Commit cf437f6

Browse files
committed
Fix GCC -Og -Wmaybe-uninitialized
This fixes up commit dd5f4b3
1 parent c4d7939 commit cf437f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

storage/maria/ha_maria.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2307,7 +2307,7 @@ void ha_maria::start_bulk_insert(ha_rows rows, uint flags)
23072307

23082308
int ha_maria::end_bulk_insert()
23092309
{
2310-
int first_error, first_errno, error;
2310+
int first_error, first_errno= 0, error;
23112311
my_bool abort= file->s->deleting, empty_table= 0;
23122312
uint enable_index_mode= HA_KEY_SWITCH_NONUNIQ_SAVE;
23132313
DBUG_ENTER("ha_maria::end_bulk_insert");

0 commit comments

Comments
 (0)