diff options
author | rubidium <rubidium@openttd.org> | 2007-10-29 22:30:54 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2007-10-29 22:30:54 +0000 |
commit | 840de103d1c6439c360629b0edd9e3c41e2f811a (patch) | |
tree | 5c666f5c0beaada4c8acbaad3c196a5f5b57fde4 /src | |
parent | 7e769d32869b36d64bc7fb5ddf83135954b1b8ad (diff) | |
download | openttd-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.
Diffstat (limited to 'src')
-rw-r--r-- | src/airport.cpp | 1 |
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; |