Lib: initialize fields in constructor

fixes CID 27987 found by Coverity
This commit is contained in:
Christian Beer 2015-11-05 17:09:16 +01:00
parent 2dbe8c4c53
commit 1204715903
1 changed files with 2 additions and 1 deletions

View File

@ -42,7 +42,8 @@
using std::string;
APP_INIT_DATA::APP_INIT_DATA() : project_preferences(NULL) {
APP_INIT_DATA::APP_INIT_DATA() {
clear();
}
APP_INIT_DATA::~APP_INIT_DATA() {