From d324b66da29dd81d769e95cbd2c2258ddebcd90a Mon Sep 17 00:00:00 2001 From: Rom Walton Date: Tue, 5 Jun 2007 00:51:05 +0000 Subject: [PATCH] - fixes #221: Win64 - attach/syncronice AMS crash Manager. The manager was getting stuck in an infinite loop since a bool wasn't being explicitly initialized to false. clientgui/ AccountManagerProcessingPage.cpp svn path=/trunk/boinc/; revision=12816 --- checkin_notes | 9 +++++++++ clientgui/AccountManagerProcessingPage.cpp | 1 + 2 files changed, 10 insertions(+) diff --git a/checkin_notes b/checkin_notes index 9e18e4cee7..e80e79464e 100755 --- a/checkin_notes +++ b/checkin_notes @@ -5754,3 +5754,12 @@ David 4 June 2007 sample_get_project_config.php (removed) py/Boinc/ setup_project.py + +Rom 4 June 2007 + - fixes #221: Win64 - attach/syncronice AMS crash Manager. + + The manager was getting stuck in an infinite loop since a + bool wasn't being explicitly initialized to false. + + clientgui/ + AccountManagerProcessingPage.cpp diff --git a/clientgui/AccountManagerProcessingPage.cpp b/clientgui/AccountManagerProcessingPage.cpp index 7a67191edf..db76ce0e62 100644 --- a/clientgui/AccountManagerProcessingPage.cpp +++ b/clientgui/AccountManagerProcessingPage.cpp @@ -112,6 +112,7 @@ bool CAccountManagerProcessingPage::Create( CBOINCBaseWizard* parent ) m_bProjectCommunitcationsSucceeded = false; m_bProjectUnavailable = false; + m_bProjectAccountNotFound = false; m_bProjectAccountAlreadyExists = false; m_iBitmapIndex = 0; m_iCurrentState = ATTACHACCTMGR_INIT;