mirror of https://github.com/BOINC/boinc.git
- 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
This commit is contained in:
parent
601403d9aa
commit
d324b66da2
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue