mirror of
https://github.com/jedisct1/libsodium.git
synced 2026-08-29 05:07:13 +09:00
fixed GCC2 bug seeing empty statement (#449)
This commit is contained in:
committed by
Frank Denis
parent
157c4a80c1
commit
9cae7b6b7c
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user