summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2007-10-29 22:30:54 +0000
committerrubidium <rubidium@openttd.org>2007-10-29 22:30:54 +0000
commit840de103d1c6439c360629b0edd9e3c41e2f811a (patch)
tree5c666f5c0beaada4c8acbaad3c196a5f5b57fde4
parent7e769d32869b36d64bc7fb5ddf83135954b1b8ad (diff)
downloadopenttd-840de103d1c6439c360629b0edd9e3c41e2f811a.tar.xz
(svn r11354) -Codechange [FS#1379]: one variable wasn't freed whereas all others were. It's not causing any problems as it happens during the shutdown of OpenTTD. So basically it is only for consistency.
-rw-r--r--src/airport.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/airport.cpp b/src/airport.cpp
index 539687997..73bfdc430 100644
--- a/src/airport.cpp
+++ b/src/airport.cpp
@@ -192,6 +192,7 @@ void InitializeAirports()
void UnInitializeAirports()
{
+ delete DummyAirport;
delete CountryAirport;
delete CityAirport;
delete Heliport;