Suppress compiler warning in relptr_store().
authorTom Lane <[email protected]>
Sat, 26 Mar 2022 18:29:29 +0000 (14:29 -0400)
committerTom Lane <[email protected]>
Sat, 26 Mar 2022 18:30:00 +0000 (14:30 -0400)
commit403a8c76293bdef17bf5ee8af6be92ee4eba6bb1
treea67ac40ae5b6f083ab3a5960e8a5a2ca466c4c01
parent57f618310f837101ba13757baf95bae37e3766ac
Suppress compiler warning in relptr_store().

clang 13 with -Wextra warns that "performing pointer subtraction with
a null pointer has undefined behavior" in the places where freepage.c
tries to set a relptr variable to constant NULL.  This appears to be
a compiler bug, but it's unlikely to get fixed instantly.  Fortunately,
we can work around it by introducing an inline support function, which
seems like a good change anyway because it removes the macro's existing
double-evaluation hazard.

Backpatch to v10 where this code was introduced.

Patch by me, based on an idea of Andres Freund's.

Discussion: https://postgr.es/m/48826.1648310694@sss.pgh.pa.us
src/include/utils/relptr.h