fixed uninitialized memory read causing a crash (reportted y sehraf)

This commit is contained in:
csoler 2020-05-09 10:55:19 +02:00
parent bc69e8c1ac
commit d7dab2ae88
No known key found for this signature in database
GPG Key ID: 7BCA522266C0804C

View File

@ -180,8 +180,9 @@ IdDialog::IdDialog(QWidget *parent) : MainPage(parent), ui(new Ui::IdDialog)
ui->treeWidget_membership->clear();
ui->treeWidget_membership->setItemDelegateForColumn(CIRCLEGROUP_CIRCLE_COL_GROUPNAME,new GxsIdTreeItemDelegate());
mExternalOtherCircleItem = NULL ;
mExternalBelongingCircleItem = NULL ;
mExternalOtherCircleItem = NULL ;
mExternalBelongingCircleItem = NULL ;
mMyCircleItem = NULL ;
/* Setup UI helper */
mStateHelper = new UIStateHelper(this);