pgsql: Silence compiler warnings on clang 21

Started by Peter Eisentraut10 months ago1 messagescomitters
Jump to latest
#1Peter Eisentraut
peter_e@gmx.net

Silence compiler warnings on clang 21

Clang 21 shows some new compiler warnings, for example:

warning: variable 'dstsize' is uninitialized when passed as a const pointer argument here [-Wuninitialized-const-pointer]

The fix is to initialize the variables when they are defined. This is
similar to, for example, the existing situation in gistKeyIsEQ().

Discussion: /messages/by-id/6604ad6e-5934-43ac-8590-15113d6ae4b1@eisentraut.org

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/e92677e86333562b8dd4972083c8a1abf985d90d

Modified Files
--------------
src/backend/access/common/toast_internals.c | 2 +-
src/backend/access/gist/gistutil.c | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)