mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-04-06 18:00:24 +08:00
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:
parent
fbad04ee79
commit
dfdc278907
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user