mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
MDEV-4647: Valgrind warnings (Conditional jump or move depends on uninitialised value) in Item_equal::fix_fields
Fix to calm down valgrind.
This commit is contained in:
parent
18cb29d432
commit
8a23ae088d
1 changed files with 2 additions and 2 deletions
|
@ -5953,8 +5953,8 @@ bool Item_equal::fix_fields(THD *thd, Item **ref)
|
|||
DBUG_ASSERT(fixed == 0);
|
||||
Item_equal_fields_iterator it(*this);
|
||||
Item *item;
|
||||
Field *first_equal_field;
|
||||
Field *last_equal_field;
|
||||
Field *first_equal_field= NULL;
|
||||
Field *last_equal_field= NULL;
|
||||
Field *prev_equal_field= NULL;
|
||||
not_null_tables_cache= used_tables_cache= 0;
|
||||
const_item_cache= 0;
|
||||
|
|
Loading…
Reference in a new issue