Merge #8540: qt: Fix random segfault when closing "Choose data directory" dialog
b4a9aa5
qt: Fix random segfault when closing "Choose data directory" dialog (Wladimir J. van der Laan)
This commit is contained in:
commit
36404aeec8
3 changed files with 10 additions and 5 deletions
|
@ -578,7 +578,8 @@ int main(int argc, char *argv[])
|
||||||
|
|
||||||
/// 5. Now that settings and translations are available, ask user for data directory
|
/// 5. Now that settings and translations are available, ask user for data directory
|
||||||
// User language is set up: pick a data directory
|
// User language is set up: pick a data directory
|
||||||
Intro::pickDataDirectory();
|
if (!Intro::pickDataDirectory())
|
||||||
|
return 0;
|
||||||
|
|
||||||
/// 6. Determine availability of data directory and parse bitcoin.conf
|
/// 6. Determine availability of data directory and parse bitcoin.conf
|
||||||
/// - Do not call GetDataDir(true) before this step finishes
|
/// - Do not call GetDataDir(true) before this step finishes
|
||||||
|
|
|
@ -165,14 +165,14 @@ QString Intro::getDefaultDataDirectory()
|
||||||
return GUIUtil::boostPathToQString(GetDefaultDataDir());
|
return GUIUtil::boostPathToQString(GetDefaultDataDir());
|
||||||
}
|
}
|
||||||
|
|
||||||
void Intro::pickDataDirectory()
|
bool Intro::pickDataDirectory()
|
||||||
{
|
{
|
||||||
namespace fs = boost::filesystem;
|
namespace fs = boost::filesystem;
|
||||||
QSettings settings;
|
QSettings settings;
|
||||||
/* If data directory provided on command line, no need to look at settings
|
/* If data directory provided on command line, no need to look at settings
|
||||||
or show a picking dialog */
|
or show a picking dialog */
|
||||||
if(!GetArg("-datadir", "").empty())
|
if(!GetArg("-datadir", "").empty())
|
||||||
return;
|
return true;
|
||||||
/* 1) Default data directory for operating system */
|
/* 1) Default data directory for operating system */
|
||||||
QString dataDir = getDefaultDataDirectory();
|
QString dataDir = getDefaultDataDirectory();
|
||||||
/* 2) Allow QSettings to override default dir */
|
/* 2) Allow QSettings to override default dir */
|
||||||
|
@ -190,7 +190,7 @@ void Intro::pickDataDirectory()
|
||||||
if(!intro.exec())
|
if(!intro.exec())
|
||||||
{
|
{
|
||||||
/* Cancel clicked */
|
/* Cancel clicked */
|
||||||
exit(0);
|
return false;
|
||||||
}
|
}
|
||||||
dataDir = intro.getDataDirectory();
|
dataDir = intro.getDataDirectory();
|
||||||
try {
|
try {
|
||||||
|
@ -211,6 +211,7 @@ void Intro::pickDataDirectory()
|
||||||
*/
|
*/
|
||||||
if(dataDir != getDefaultDataDirectory())
|
if(dataDir != getDefaultDataDirectory())
|
||||||
SoftSetArg("-datadir", GUIUtil::qstringToBoostPath(dataDir).string()); // use OS locale for path setting
|
SoftSetArg("-datadir", GUIUtil::qstringToBoostPath(dataDir).string()); // use OS locale for path setting
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void Intro::setStatus(int status, const QString &message, quint64 bytesAvailable)
|
void Intro::setStatus(int status, const QString &message, quint64 bytesAvailable)
|
||||||
|
|
|
@ -35,10 +35,13 @@ public:
|
||||||
/**
|
/**
|
||||||
* Determine data directory. Let the user choose if the current one doesn't exist.
|
* Determine data directory. Let the user choose if the current one doesn't exist.
|
||||||
*
|
*
|
||||||
|
* @returns true if a data directory was selected, false if the user cancelled the selection
|
||||||
|
* dialog.
|
||||||
|
*
|
||||||
* @note do NOT call global GetDataDir() before calling this function, this
|
* @note do NOT call global GetDataDir() before calling this function, this
|
||||||
* will cause the wrong path to be cached.
|
* will cause the wrong path to be cached.
|
||||||
*/
|
*/
|
||||||
static void pickDataDirectory();
|
static bool pickDataDirectory();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Determine default data directory for operating system.
|
* Determine default data directory for operating system.
|
||||||
|
|
Loading…
Reference in a new issue