Navigation Menu

Skip to content

Commit

Permalink
thd->work_part_info is sometimes uninitialized.
Browse files Browse the repository at this point in the history
  • Loading branch information
shibakentoku committed Nov 16, 2013
1 parent 8123914 commit 6f3ae63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ha_mroonga.cpp
Expand Up @@ -2496,7 +2496,7 @@ int ha_mroonga::create_share_for_create() const
share_for_create.table_share = &table_share_for_create;
table_for_create.s = &table_share_for_create;
#ifdef WITH_PARTITION_STORAGE_ENGINE
table_for_create.part_info = thd->work_part_info;
table_for_create.part_info = NULL;
#endif
if ((error = mrn_parse_table_param(&share_for_create, &table_for_create)))
goto error;
Expand Down

0 comments on commit 6f3ae63

Please sign in to comment.