From: Andres Freund Date: Mon, 9 Jun 2014 08:50:39 +0000 (+0200) Subject: bdr: Properly initialize stack variable. X-Git-Url: http://git.postgresql.org/gitweb/static/developers.postgresql.org?a=commitdiff_plain;h=67051f5bd770282766966ffde14760c3d8e95732;p=users%2Fandresfreund%2Fpostgres.git bdr: Properly initialize stack variable. --- diff --git a/contrib/bdr/bdr_locks.c b/contrib/bdr/bdr_locks.c index be116ea3b2..a78a000de1 100644 --- a/contrib/bdr/bdr_locks.c +++ b/contrib/bdr/bdr_locks.c @@ -913,7 +913,7 @@ bdr_process_replay_confirm(uint64 sysid, TimeLineID tli, TimeLineID replay_tli; Oid replay_datid; StringInfoData s; - bool found; + bool found = false; initStringInfo(&s);