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 | 24956ab71ba1dd9ed1734ae262229f098662b275 (patch) | |
tree | 5c666f5c0beaada4c8acbaad3c196a5f5b57fde4 | |
parent | 1256cbade375d9e9cb2168a6fd9b613d269e7371 (diff) | |
download | openttd-24956ab71ba1dd9ed1734ae262229f098662b275.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.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; |