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
This commit is contained in:
Jimmy Yang 2011-01-04 22:31:46 -08:00
commit c143ff4848

View file

@ -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;