aboutsummaryrefslogtreecommitdiff
path: root/src/qt/walletmodel.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2014-01-06 12:58:06 +0100
committerWladimir J. van der Laan <laanwj@gmail.com>2014-01-06 13:36:24 +0100
commitd31ad26550403d9ed8d5aedd0f65d610b55d9497 (patch)
treef8002c42fa4062606197564710595654a7be42ba /src/qt/walletmodel.cpp
parent28352af0606cea00cd80e8f353bda02fadf2222c (diff)
downloadbitcoin-d31ad26550403d9ed8d5aedd0f65d610b55d9497.tar.xz
qt: Add missing lock in WalletModel::listCoins
Another problem detected by cs_wallet lock detection (#3401).
Diffstat (limited to 'src/qt/walletmodel.cpp')
-rw-r--r--src/qt/walletmodel.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/qt/walletmodel.cpp b/src/qt/walletmodel.cpp
index 78bc170623..6f3e3b0aaf 100644
--- a/src/qt/walletmodel.cpp
+++ b/src/qt/walletmodel.cpp
@@ -502,6 +502,7 @@ void WalletModel::listCoins(std::map<QString, std::vector<COutput> >& mapCoins)
std::vector<COutput> vCoins;
wallet->AvailableCoins(vCoins);
+ LOCK(wallet->cs_wallet); // ListLockedCoins, mapWallet
std::vector<COutPoint> vLockedCoins;
wallet->ListLockedCoins(vLockedCoins);