Fix memory leak in avrorouter

The TABLE_MAP freeing function leaked memory.
This commit is contained in:
Markus Mäkelä
2018-01-11 08:15:01 +02:00
parent f2771d5ad8
commit 5e4b7ae7c7

View File

@ -1446,6 +1446,8 @@ void table_map_free(TABLE_MAP *map)
if (map)
{
MXS_FREE(map->column_types);
MXS_FREE(map->column_metadata);
MXS_FREE(map->null_bitmap);
MXS_FREE(map->database);
MXS_FREE(map->table);
MXS_FREE(map);