mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
Fixed crash in GxsIdChooser. The TokenQueue was not deleted in the destructor.
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@7499 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
21b0479159
commit
6085ccd43f
@ -73,6 +73,10 @@ GxsIdChooser::GxsIdChooser(QWidget *parent)
|
||||
|
||||
GxsIdChooser::~GxsIdChooser()
|
||||
{
|
||||
if (mIdQueue) {
|
||||
delete(mIdQueue);
|
||||
mIdQueue = NULL;
|
||||
}
|
||||
}
|
||||
|
||||
void GxsIdChooser::setUpdateWhenInvisible(bool update)
|
||||
|
Loading…
Reference in New Issue
Block a user