Silence compiler warning.
authorTom Lane <tgl@sss.pgh.pa.us>
Tue, 18 Mar 2025 14:54:10 +0000 (10:54 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Tue, 18 Mar 2025 14:54:10 +0000 (10:54 -0400)
commit4078da6c478039bbafdd58138957dc47db545935
tree4b78740f5e9347fa57192a23d31e1701a3279b25
parentdaa02c6bd9262adeb44f4a9ed9d94fa6259afd94
Silence compiler warning.

Assorted buildfarm members are complaining about "'process_list' may
be used uninitialized in this function" since f76892c9f, presumably
because they don't trust that the switch case labels are exhaustive.
We can silence that by initializing the variable to NULL.  Should
a switch fall-through actually happen, we'll get SIGSEGV at the
first use, which is as good as an Assert.
src/bin/scripts/reindexdb.c