initialize fields in constructor

fixes CID 28041 found by Coverity
This commit is contained in:
Christian Beer 2015-10-23 13:46:59 +02:00
parent a58ffd2983
commit c19cb4675f
1 changed files with 3 additions and 0 deletions

View File

@ -183,9 +183,12 @@ struct BEST_APP_VERSION {
BEST_APP_VERSION() {
appid = 0;
for_64b_jobs = false;
present = false;
cavp = NULL;
avp = NULL;
reliable = false;
trusted = false;
}
};