Fix another memory leak

This commit is contained in:
whydoubt
2004-06-23 03:09:45 +00:00
parent 7e4a7bc113
commit acdeac0368
2 changed files with 2 additions and 0 deletions

View File

@@ -94,6 +94,7 @@ void
mdb_free_tabledef(MdbTableDef *table)
{
if (!table) return;
mdb_free_columns(table->columns);
g_free(table->usage_map);
g_free(table->free_usage_map);
g_free(table);