db_lmdb: fix use of uninitialized key in for_blocks_range
This commit is contained in:
parent
1a73843cec
commit
9aeae7a224
|
@ -2420,8 +2420,8 @@ bool BlockchainLMDB::for_blocks_range(const uint64_t& h1, const uint64_t& h2, st
|
||||||
MDB_cursor_op op;
|
MDB_cursor_op op;
|
||||||
if (h1)
|
if (h1)
|
||||||
{
|
{
|
||||||
MDB_val_set(k, h1);
|
k = MDB_val{sizeof(h1), (void*)&h1};
|
||||||
op = MDB_SET;
|
op = MDB_SET;
|
||||||
} else
|
} else
|
||||||
{
|
{
|
||||||
op = MDB_FIRST;
|
op = MDB_FIRST;
|
||||||
|
|
Loading…
Reference in New Issue