SVN commit 1122012 by mzanetti: return 0 when wizard is already closed fixes crash when both sides abort authentication BUG: 231595 M +1 -1 authenticationwizard.cpp --- trunk/KDE/kdenetwork/kopete/plugins/otr/authenticationwizard.cpp #1122011:1122012 @@ -93,7 +93,7 @@ return wizardList.at(i); } } - return wizardList.at(0); + return 0; } QWizardPage *AuthenticationWizard::createIntroPage(){