mirror of
https://github.com/postgres/postgres.git
synced 2025-09-08 00:47:37 +03:00
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.