修复bug:ex_data释放时,使用错误的hash表删除索引。 This fix is related to TSG-10486

This commit is contained in:
zhengchao
2022-04-27 14:25:15 +08:00
parent fd88b6a266
commit d814b4e9eb
2 changed files with 3 additions and 3 deletions

View File

@@ -98,9 +98,9 @@ void EX_data_rt_free(struct EX_data_rt* ex_rt)
}
else
{
HASH_ITER(hh_b, ex_rt->hash_key2ex_a, ex_container, tmp)
HASH_ITER(hh_b, ex_rt->hash_key2ex_b, ex_container, tmp)
{
HASH_DELETE(hh_b, ex_rt->hash_key2ex_a, ex_container);
HASH_DELETE(hh_b, ex_rt->hash_key2ex_b, ex_container);
EX_data_container_free(ex_container);
}

View File

@@ -57,7 +57,7 @@ extern "C"
}
#endif
int MAAT_FRAME_VERSION_3_6_5_20220426=1;
int MAAT_FRAME_VERSION_3_6_6_20220427=1;
int is_valid_table_name(const char* str)
{