diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2013-02-16 17:58:45 +0100 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2013-02-17 23:25:42 +0100 |
commit | f7f3a96b74bb795d6e184a628adce21c744d234f (patch) | |
tree | 79999de8be9721005662fc0dcc51cc4a030a1256 /src/checkqueue.h | |
parent | 2f0fa79db290d5139c27409055b2035099afa6fd (diff) |
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>; }; |