Make mdb_close free the handle

This commit is contained in:
whydoubt
2004-04-14 05:15:18 +00:00
parent 7a55c6b2b3
commit 5f46b6bc2a
2 changed files with 2 additions and 0 deletions

View File

@@ -3,6 +3,7 @@ Tue Apr 13 19:08:51 CDT 2004 Jeff Smith <whydoubt@yahoo.com>
* configure.in: * configure.in:
* src/odbc/Makefile.am: Improve configure for ODBC * src/odbc/Makefile.am: Improve configure for ODBC
* acinclude.m4: Update to the latest libtool.m4 * acinclude.m4: Update to the latest libtool.m4
* src/libmdb/file.c: Make mdb_close free the handle
Tue Apr 13 15:25:26 EDT 2004 Brian Bruns <brian@bruns.com> Tue Apr 13 15:25:26 EDT 2004 Brian Bruns <brian@bruns.com>
* include/mdbtools.h: * include/mdbtools.h:

View File

@@ -178,6 +178,7 @@ mdb_close(MdbHandle *mdb)
mdb->f = NULL; mdb->f = NULL;
} }
} }
mdb_free_handle(mdb);
} }
/** /**
* mdb_clone_handle: * mdb_clone_handle: