delete set_iris evaluation_order
This commit is contained in:
@@ -643,7 +643,15 @@ void table_manager_runtime_destroy(struct table_manager *tbl_mgr)
|
||||
}
|
||||
|
||||
/* free district map */
|
||||
maat_kv_store_free(tbl_mgr->district_map);
|
||||
if (tbl_mgr->district_map != NULL) {
|
||||
maat_kv_store_free(tbl_mgr->district_map);
|
||||
tbl_mgr->district_map = NULL;
|
||||
}
|
||||
|
||||
if (tbl_mgr->tmp_district_map != NULL) {
|
||||
maat_kv_store_free(tbl_mgr->tmp_district_map);
|
||||
tbl_mgr->tmp_district_map = NULL;
|
||||
}
|
||||
}
|
||||
|
||||
void table_manager_destroy(struct table_manager *tbl_mgr)
|
||||
@@ -867,4 +875,4 @@ void table_manager_commit_runtime(struct table_manager *tbl_mgr, int table_id)
|
||||
if ( table_ops[table_type].commit_runtime != NULL) {
|
||||
table_ops[table_type].commit_runtime(runtime, ptable->table_name);;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user