Fix unportable disregard of alignment requirements in RADIUS code.
authorTom Lane <[email protected]>
Sun, 26 Mar 2017 21:35:35 +0000 (17:35 -0400)
committerTom Lane <[email protected]>
Sun, 26 Mar 2017 21:35:35 +0000 (17:35 -0400)
commit5fe937f38b493f7c94c4ef8b0940e034afbd78a6
treeafec019871ace6f2ca7304caf0b64d20d4b0c42b
parent8ae3ff64be777b50f560f7cab7c238aae1bde9b0
Fix unportable disregard of alignment requirements in RADIUS code.

The compiler is entitled to store a char[] local variable with no
particular alignment requirement.  Our RADIUS code cavalierly took such
a local variable and cast its address to a struct type that does have
alignment requirements.  On an alignment-picky machine this would lead
to bus errors.  To fix, declare the local variable honestly, and then
cast its address to char * for use in the I/O calls.

Given the lack of field complaints, there must be very few if any
people affected; but nonetheless this is a clear portability issue,
so back-patch to all supported branches.

Noted while looking at a Coverity complaint in the same code.
src/backend/libpq/auth.c