aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet.cpp
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2019-08-19 17:13:11 -0400
committerMarcoFalke <falke.marco@gmail.com>2019-09-03 14:11:11 -0400
commitfa734603b78ba31ebf0da5d2dbe87386eafff01a (patch)
tree79f9b9948e5babdcedf61bbd00981f57e08c32fe /src/wallet/wallet.cpp
parentfab3c34412379598b812631e3c123e9467cdc485 (diff)
downloadbitcoin-fa734603b78ba31ebf0da5d2dbe87386eafff01a.tar.xz
wallet: Fix segmentation fault in CreateWalletFromFile
Diffstat (limited to 'src/wallet/wallet.cpp')
-rw-r--r--src/wallet/wallet.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp
index 84fd01730d..e5ec8d84b1 100644
--- a/src/wallet/wallet.cpp
+++ b/src/wallet/wallet.cpp
@@ -4243,7 +4243,7 @@ bool CWallet::Verify(interfaces::Chain& chain, const WalletLocation& location, b
std::shared_ptr<CWallet> CWallet::CreateWalletFromFile(interfaces::Chain& chain, const WalletLocation& location, uint64_t wallet_creation_flags)
{
- const std::string& walletFile = WalletDataFilePath(location.GetPath()).string();
+ const std::string walletFile = WalletDataFilePath(location.GetPath()).string();
// needed to restore wallet transaction meta data after -zapwallettxes
std::vector<CWalletTx> vWtx;