From: Erik Hofman Date: Thu, 24 Dec 2015 12:44:34 +0000 (+0100) Subject: Do not call setIsPushback, it causes a segmentation fault after about 10 minutes... X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=d6c5dc647d34b639a7d809cbc4c7fbeccf65f128;p=flightgear.git 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. --- 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(); } }