pgsql: Fix uninitialized local variables.

From: tgl(at)postgresql(dot)org (Tom Lane)
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Fix uninitialized local variables.
Date: 2010-04-19 17:54:48
Message-ID: 20100419175448.36DC37541D0@cvs.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Log Message:
-----------
Fix uninitialized local variables. Not sure why gcc doesn't complain about
these --- maybe because they're effectively unused? MSVC does complain though,
per buildfarm.

Modified Files:
--------------
pgsql/src/backend/access/nbtree:
nbtxlog.c (r1.65 -> r1.66)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/access/nbtree/nbtxlog.c?r1=1.65&r2=1.66)

Browse pgsql-committers by date

  From Date Subject
Next Message Simon Riggs 2010-04-19 18:03:38 pgsql: Check RecoveryInProgress() while holding ProcArrayLock during
Previous Message Tom Lane 2010-04-19 14:55:32 Re: Re: [COMMITTERS] pgsql: Tune GetSnapshotData() during Hot Standby by avoiding loop