mirror of
https://github.com/monero-project/monero.git
synced 2024-11-18 10:01:02 +00:00
Silence warning about possibly uninitialized pointer
This commit is contained in:
parent
a0af28ceba
commit
93b32892f7
1 changed files with 1 additions and 1 deletions
|
@ -530,7 +530,7 @@ void cn_slow_hash(const void *data, size_t length, char *hash)
|
||||||
|
|
||||||
size_t i, j;
|
size_t i, j;
|
||||||
uint64_t *p = NULL;
|
uint64_t *p = NULL;
|
||||||
oaes_ctx *aes_ctx;
|
oaes_ctx *aes_ctx = NULL;
|
||||||
int useAes = !force_software_aes() && check_aes_hw();
|
int useAes = !force_software_aes() && check_aes_hw();
|
||||||
|
|
||||||
static void (*const extra_hashes[4])(const void *, size_t, char *) =
|
static void (*const extra_hashes[4])(const void *, size_t, char *) =
|
||||||
|
|
Loading…
Reference in a new issue