Tatsuhiro NISHIOKA: initialize classes (fixes segfault on exit on MacOS)
This commit is contained in:
parent
603778eb1e
commit
b0cd31415a
1 changed files with 7 additions and 2 deletions
|
@ -78,10 +78,12 @@ FGGlobals::FGGlobals() :
|
||||||
time_params( NULL ),
|
time_params( NULL ),
|
||||||
ephem( NULL ),
|
ephem( NULL ),
|
||||||
mag( NULL ),
|
mag( NULL ),
|
||||||
|
matlib( NULL ),
|
||||||
route_mgr( NULL ),
|
route_mgr( NULL ),
|
||||||
current_panel( NULL ),
|
current_panel( NULL ),
|
||||||
soundmgr( NULL ),
|
soundmgr( NULL ),
|
||||||
airports( NULL ),
|
airports( NULL ),
|
||||||
|
runways( NULL ),
|
||||||
ATC_mgr( NULL ),
|
ATC_mgr( NULL ),
|
||||||
AI_mgr( NULL ),
|
AI_mgr( NULL ),
|
||||||
controls( NULL ),
|
controls( NULL ),
|
||||||
|
@ -106,7 +108,10 @@ FGGlobals::FGGlobals() :
|
||||||
mkrlist( NULL ),
|
mkrlist( NULL ),
|
||||||
tacanlist( NULL ),
|
tacanlist( NULL ),
|
||||||
carrierlist( NULL ),
|
carrierlist( NULL ),
|
||||||
fixlist( NULL )
|
channellist( NULL ),
|
||||||
|
fixlist( NULL ),
|
||||||
|
airwaynet( NULL ),
|
||||||
|
multiplayer_mgr( NULL )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue