Commit 0f412ffb authored by Jimmy Yang's avatar Jimmy Yang

Fix Bug #59157 valgrind conditional jump warning from dict_load_foreign.

This is 5.1 built-in specific as the dict_table_t strcture is allocated
with mem_heap_zalloc since 5.1 plugin.

Approved by Sunny Bains
parent 66d50854
......@@ -87,6 +87,8 @@ dict_mem_table_create(
table->big_rows = 0;
table->fk_max_recusive_level = 0;
mutex_create(&table->autoinc_mutex, SYNC_DICT_AUTOINC_MUTEX);
table->autoinc = 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