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

@ -1,5 +1,6 @@
Tue Jun 22 22:02:02 CDT 2004 Jeff Smith <whydoubt@yahoo.com>
* src/util/mdb-schema.c: Fix a memory leak
* src/libmdb/mem.c: Fix another memory leak
Mon Jun 21 23:18:18 CDT 2004 Jeff Smith <whydoubt@yahoo.com>
* src/libmdb/backend.c:

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);