diff options
author | Gavin Andresen <gavinandresen@gmail.com> | 2013-03-09 12:02:57 -0500 |
---|---|---|
committer | Gavin Andresen <gavinandresen@gmail.com> | 2013-04-03 19:57:53 -0400 |
commit | b31499ec72edd1554d4612d1b54808fce0360e14 (patch) | |
tree | a2d03852b9fd6e9595470210479f212ccf4313f1 /src/qt/bitcoin.cpp | |
parent | 21eb5adadbe3110a8708f2570185566e1f137a49 (diff) |
Clean up shutdown process
Diffstat (limited to 'src/qt/bitcoin.cpp')
-rw-r--r-- | src/qt/bitcoin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp index a805e350e6..b61921fca0 100644 --- a/src/qt/bitcoin.cpp +++ b/src/qt/bitcoin.cpp @@ -260,9 +260,9 @@ int main(int argc, char *argv[]) guiref = 0; } // Shutdown the core and its threads, but don't exit Bitcoin-Qt here - Shutdown(NULL); threadGroup.interrupt_all(); threadGroup.join_all(); + Shutdown(); } else { |