(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.
authorrubidium
Mon, 29 Oct 2007 22:30:54 +0000
changeset 7804 fc2d1522f741
parent 7803 55307751965b
child 7805 7ab20f94cc80
(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.
src/airport.cpp
--- a/src/airport.cpp	Sun Oct 28 16:00:51 2007 +0000
+++ b/src/airport.cpp	Mon Oct 29 22:30:54 2007 +0000
@@ -192,6 +192,7 @@
 
 void UnInitializeAirports()
 {
+	delete DummyAirport;
 	delete CountryAirport;
 	delete CityAirport;
 	delete Heliport;