Commit 0df39e60 authored by Sergei Golubchik's avatar Sergei Golubchik

bugfix: uninit variable

parent 8d99166c
...@@ -69,7 +69,7 @@ static int rr_index_desc(READ_RECORD *info); ...@@ -69,7 +69,7 @@ static int rr_index_desc(READ_RECORD *info);
bool init_read_record_idx(READ_RECORD *info, THD *thd, TABLE *table, bool init_read_record_idx(READ_RECORD *info, THD *thd, TABLE *table,
bool print_error, uint idx, bool reverse) bool print_error, uint idx, bool reverse)
{ {
int error; int error= 0;
DBUG_ENTER("init_read_record_idx"); DBUG_ENTER("init_read_record_idx");
empty_record(table); empty_record(table);
......
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