Commit 591fdbe1 authored by Sergey Petrunya's avatar Sergey Petrunya

Fix compile warnings

parent b55a3278
...@@ -472,9 +472,9 @@ static my_bool _ma_ck_write_btree_with_log(MARIA_HA *info, MARIA_KEY *key, ...@@ -472,9 +472,9 @@ static my_bool _ma_ck_write_btree_with_log(MARIA_HA *info, MARIA_KEY *key,
int error; int error;
my_off_t new_root= *root; my_off_t new_root= *root;
uchar key_buff[MARIA_MAX_KEY_BUFF]; uchar key_buff[MARIA_MAX_KEY_BUFF];
MARIA_KEY org_key; MARIA_KEY UNINIT_VAR(org_key); /* Set/used when now_transactional=TRUE */
DBUG_ENTER("_ma_ck_write_btree_with_log"); DBUG_ENTER("_ma_ck_write_btree_with_log");
if (share->now_transactional) if (share->now_transactional)
{ {
/* Save original value as the key may change */ /* Save original value as the key may change */
......
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