fixed GCC2 bug seeing empty statement (#449)

This commit is contained in:
Winston Durand
2016-11-30 06:52:18 +01:00
committed by Frank Denis
parent 157c4a80c1
commit 9cae7b6b7c
+1 -1
View File
@@ -62,7 +62,7 @@ static unsigned char canary[CANARY_SIZE];
__attribute__ ((weak)) void
_sodium_memzero_as_a_weak_symbol_to_prevent_lto(void * const pnt, const size_t len)
{
unsigned char *pnt_ = (unsigned char *) pnt;;
unsigned char *pnt_ = (unsigned char *) pnt;
size_t i = (size_t) 0U;
while (i < len) {