mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
blockchain_db: initialize m_hardfork in ctor just in case
Coverity 136568
This commit is contained in:
parent
1afc1d0d26
commit
4eca42b241
1 changed files with 1 additions and 1 deletions
|
@ -544,7 +544,7 @@ public:
|
||||||
/**
|
/**
|
||||||
* @brief An empty constructor.
|
* @brief An empty constructor.
|
||||||
*/
|
*/
|
||||||
BlockchainDB(): m_open(false) { }
|
BlockchainDB(): m_hardfork(NULL), m_open(false) { }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief An empty destructor.
|
* @brief An empty destructor.
|
||||||
|
|
Loading…
Reference in a new issue