Skip to content
Snippets Groups Projects
Commit e76c8b47 authored by Edgar E. Iglesias's avatar Edgar E. Iglesias Committed by Niels Möller
Browse files

Fix condition for when the block buffer is full.

parent 2dfae9f3
No related branches found
No related tags found
No related merge requests found
2013-04-06 Niels Möller <nisse@lysator.liu.se>
From Edgar E. Iglesias:
* sha3.c (_sha3_update): Fix condition for when the block buffer
is full.
2013-04-04 Niels Möller <nisse@lysator.liu.se> 2013-04-04 Niels Möller <nisse@lysator.liu.se>
* ecc-point.c (ecc_point_get): Allow NULL x or y, ignore * ecc-point.c (ecc_point_get): Allow NULL x or y, ignore
......
...@@ -61,7 +61,7 @@ _sha3_update (struct sha3_state *state, ...@@ -61,7 +61,7 @@ _sha3_update (struct sha3_state *state,
if (pos > 0) if (pos > 0)
{ {
unsigned left = block_size - pos; unsigned left = block_size - pos;
if (length < pos) if (length < left)
{ {
memcpy (block + pos, data, length); memcpy (block + pos, data, length);
return pos + length; return pos + length;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment