]> git.ipfire.org Git - thirdparty/postgresql.git/commit
Suppress maybe-uninitialized warning.
authorMasahiko Sawada <msawada@postgresql.org>
Tue, 5 Aug 2025 22:30:28 +0000 (15:30 -0700)
committerMasahiko Sawada <msawada@postgresql.org>
Tue, 5 Aug 2025 22:30:28 +0000 (15:30 -0700)
commitb5c53b403c93393c3725558294cbf4dbfb575e42
tree70ebb1388dee41404c01fd64feb5ac108d019b7b
parent80c758a2e1d720a942610f2f889448d69ce2ce95
Suppress maybe-uninitialized warning.

Following commit e035863c9a0, building with -O0 began triggering
warnings about potentially uninitialized 'workbuf' usage. While
theoretically the initialization isn't necessary since VARDATA()
doesn't access the contents of the pointed-to object, this commit
explicitly initializes the workbuf variable to suppress the warning.

Buildfarm members adder and flaviventris have shown the warning.

Reviewed-by: Tom Lane <tgl@sss.pgh.pa.us>
Discussion: https://postgr.es/m/CAD21AoCOZxfqnNgfM5yVKJZYnOq5m2Q96fBGy1fovEqQ9V4OZA@mail.gmail.com
src/backend/storage/large_object/inv_api.c