]> granicus.if.org Git - postgresql/commit
Fix compiler warning.
authorRobert Haas <rhaas@postgresql.org>
Wed, 15 Jan 2014 15:24:28 +0000 (10:24 -0500)
committerRobert Haas <rhaas@postgresql.org>
Wed, 15 Jan 2014 15:24:28 +0000 (10:24 -0500)
commitd89746c7c534ef5b061fee0b8f587042f55bd92d
treea105e28736b4c7c7b00be0b2d5b3700c21a8b38b
parentbe361ef2a0b58ce1f3faff7ccabe174e20d50497
Fix compiler warning.

Kevin Gritter reports that his compiler complains about inq and outq
being possibly-uninitialized at the point where they are passed to
shm_mq_attach().  They are initialized by the call to
setup_dynamic_shared_memory, but apparently his compiler is inlining
that function and then having doubts about whether the for loop will
always execute at least once.  Fix by initializing them to NULL.
contrib/test_shm_mq/setup.c