From d6c5dc647d34b639a7d809cbc4c7fbeccf65f128 Mon Sep 17 00:00:00 2001 From: Erik Hofman Date: Thu, 24 Dec 2015 13:44:34 +0100 Subject: [PATCH] Do not call setIsPushback, it causes a segmentation fault after about 10 minutes. I did commit this change in 6b9a28a568dee493dc76be76a2d8eb106133d4e4 to fix a warning, but it night not have been the wisest thing to do. --- src/Airports/dynamicloader.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Airports/dynamicloader.cxx b/src/Airports/dynamicloader.cxx index 97cab7f10..b40e7555f 100644 --- a/src/Airports/dynamicloader.cxx +++ b/src/Airports/dynamicloader.cxx @@ -226,7 +226,7 @@ void FGAirportDynamicsXMLLoader::startArc(const XMLAttributes &atts) _arcSet.insert(e); _dynamics->getGroundNetwork()->addSegment(fromNode, toNode); if (isPushBackRoute) { - toNode->setIsPushback(); +// toNode->setIsPushback(); } } -- 2.39.5