Fix type punning in xxdrntohdouble() by using memcpy instead of assignment

gcc11 explicitly warned about this strict aliasing violation:
xxdr.c: In function 'xxdrntohdouble':
xxdr.c:505:19: warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing]
  505 |     if(dp) *dp = *(double*)ii;
      |                   ^~~~~~~~~~~

Signed-off-by: Egbert Eich <eich@suse.com>
This commit is contained in:
Egbert Eich 2021-07-10 09:54:03 +02:00
parent fbad04ee79
commit dfdc278907

View File

@ -502,7 +502,8 @@ xxdrntohdouble(char* c8, double* dp)
ii[0] = ii[1];
ii[1] = tmp;
}
if(dp) *dp = *(double*)ii;
/* use memcpy avoid type punning */
if(dp) memcpy(dp, ii, sizeof(double));
}
void