From: ehofman Date: Fri, 23 May 2003 11:55:26 +0000 (+0000) Subject: initialize some otherwise unitialized variables X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=d8ab9931949027525eadfcebc6774a84f9d332c6;p=flightgear.git initialize some otherwise unitialized variables --- diff --git a/src/ATC/ATCmgr.cxx b/src/ATC/ATCmgr.cxx index a48144417..302bc7d52 100644 --- a/src/ATC/ATCmgr.cxx +++ b/src/ATC/ATCmgr.cxx @@ -65,6 +65,8 @@ FGATCMgr::FGATCMgr() { comm_type[1] = INVALID; comm_atc_ptr[0] = NULL; comm_atc_ptr[1] = NULL; + comm_valid[0] = false; + comm_valid[1] = false; } FGATCMgr::~FGATCMgr() {