Skip to content
Snippets Groups Projects
Unverified Commit 0584ccf6 authored by fireice-uk's avatar fireice-uk Committed by GitHub
Browse files

Merge pull request #1928 from psychocrypt/fix-accessUninitializedValue

fix access uninitialized value
parents 9fe30b2b 5da57b93
No related branches found
No related tags found
No related merge requests found
......@@ -10,9 +10,9 @@ namespace xmrstak
{
struct coinDescription
{
xmrstak_algo algo;
xmrstak_algo algo_root;
uint8_t fork_version;
xmrstak_algo algo = xmrstak_algo::invalid_algo;
xmrstak_algo algo_root = xmrstak_algo::invalid_algo;
uint8_t fork_version = 0u;
coinDescription() = default;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment