]> git.mxchange.org Git - flightgear.git/commitdiff
Fix a secondary issue in bug 484 - avoid a crash when --lat, --long *and* --airport...
authorJames Turner <zakalawe@mac.com>
Sat, 12 Nov 2011 18:00:12 +0000 (18:00 +0000)
committerJames Turner <zakalawe@mac.com>
Sat, 12 Nov 2011 18:00:12 +0000 (18:00 +0000)
src/ATC/atc_mgr.cxx

index 22e5db5e80d31b37b5f9b6a729dd2ab6f9633ab9..33d90a9a4166bf0c0de954551f65ef37f3758a2c 100644 (file)
@@ -100,7 +100,7 @@ void FGATCManager::init() {
 
 
     FGAirport *apt = FGAirport::findByIdent(airport); 
-    if (apt && onGround) {
+    if (apt && onGround && !runway.empty()) {
         FGAirportDynamics* dcs = apt->getDynamics();
         int park_index = dcs->getNrOfParkings() - 1;
         //cerr << "found information: " << runway << " " << airport << ": parking = " << parking << endl;