1
0
Fork 0

Properly close our database file ...

This commit is contained in:
curt 2001-01-31 15:58:53 +00:00
parent c3e3e9f5d7
commit c78827569a
2 changed files with 2 additions and 2 deletions

View file

@ -157,7 +157,7 @@ bool FGRunways::next( FGRunway* r ) {
// Destructor
FGRunways::~FGRunways( void ) {
// gdbm_close( dbf );
delete storage;
}

View file

@ -102,7 +102,7 @@ FGAirports::search( const string& id ) const
// Destructor
FGAirports::~FGAirports( void ) {
// gdbm_close( dbf );
delete storage;
}