mirror of
https://github.com/postgres/postgres.git
synced 2026-06-02 05:49:16 -04:00
ac43da8466
checked that the pointer is actually word-aligned. Casting a non-aligned pointer to int32* is technically illegal per the C spec, and some recent versions of gcc actually generate bad code for the memset() when given such a pointer. Per report from Andrew Morrow.