mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
unit_tests: Fix uninitialized values
- Initialize the `hash` in the `get_block_hash()` function of the `output_distribution` unit test explicitly, to silence `valgrind` warnings.
This commit is contained in:
parent
cdfa2e58df
commit
f56e160217
1 changed files with 1 additions and 1 deletions
|
@ -93,7 +93,7 @@ bool get_output_distribution(uint64_t amount, uint64_t from, uint64_t to, uint64
|
|||
|
||||
crypto::hash get_block_hash(uint64_t height)
|
||||
{
|
||||
crypto::hash hash;
|
||||
crypto::hash hash = crypto::null_hash;
|
||||
*((uint64_t*)&hash) = height;
|
||||
return hash;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue