projects
/
openssl.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Save leaf_node and node_offset as character array
[openssl.git]
/
crypto
/
blake2
/
blake2b.c
diff --git
a/crypto/blake2/blake2b.c
b/crypto/blake2/blake2b.c
index d187e6bd21240d77fe8d019da840702b2194718d..621949013a6ee6be0730b86dcb3b237528f92f58 100644
(file)
--- a/
crypto/blake2/blake2b.c
+++ b/
crypto/blake2/blake2b.c
@@
-95,8
+95,8
@@
int BLAKE2b_Init(BLAKE2B_CTX *c)
P->key_length = 0;
P->fanout = 1;
P->depth = 1;
P->key_length = 0;
P->fanout = 1;
P->depth = 1;
- store32(
&
P->leaf_length, 0);
- store64(
&
P->node_offset, 0);
+ store32(P->leaf_length, 0);
+ store64(P->node_offset, 0);
P->node_depth = 0;
P->inner_length = 0;
memset(P->reserved, 0, sizeof(P->reserved));
P->node_depth = 0;
P->inner_length = 0;
memset(P->reserved, 0, sizeof(P->reserved));