Commit ca0211e1 authored by Alfranio Correia's avatar Alfranio Correia

Post-merge fix for BUG#51894, BUG#53075

thread_temporary_used is not initialized causing
valgrind's warnings.
parent fc4a8a5e
...@@ -505,7 +505,7 @@ THD::THD() ...@@ -505,7 +505,7 @@ THD::THD()
count_cuted_fields= CHECK_FIELD_IGNORE; count_cuted_fields= CHECK_FIELD_IGNORE;
killed= NOT_KILLED; killed= NOT_KILLED;
col_access=0; col_access=0;
is_slave_error= thread_specific_used= FALSE; is_slave_error= thread_specific_used= thread_temporary_used= FALSE;
my_hash_clear(&handler_tables_hash); my_hash_clear(&handler_tables_hash);
tmp_table=0; tmp_table=0;
used_tables=0; used_tables=0;
......
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