diff options
author | Gavin Andresen <gavinandresen@gmail.com> | 2013-02-18 14:31:20 -0800 |
---|---|---|
committer | Gavin Andresen <gavinandresen@gmail.com> | 2013-02-18 14:31:20 -0800 |
commit | dbac38170a537206d6aeb00f119b881560890e44 (patch) | |
tree | 780fb0bb01ca1041133696f4a284a8fdfc6da425 /src/checkqueue.h | |
parent | 06bbb7a166d70389070c98bca999eba3717dbf98 (diff) | |
parent | f7f3a96b74bb795d6e184a628adce21c744d234f (diff) |
Merge pull request #2315 from sipa/loaderror
Improve block database load error reporting
Diffstat (limited to 'src/checkqueue.h')
-rw-r--r-- | src/checkqueue.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/checkqueue.h b/src/checkqueue.h index 36141dd74b..12dde36fe7 100644 --- a/src/checkqueue.h +++ b/src/checkqueue.h @@ -163,6 +163,10 @@ public: condQuit.wait(lock); } + ~CCheckQueue() { + Quit(); + } + friend class CCheckQueueControl<T>; }; |