Skip to content

Commit 37bd2aa

Browse files
committed
Fix breakage introduced in plpgsql CONTINUE patch.
Per Kevin McArthur.
1 parent f124e82 commit 37bd2aa

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/pl/plpgsql/src/pl_exec.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* procedural language
44
*
55
* IDENTIFICATION
6-
* $PostgreSQL: pgsql/src/pl/plpgsql/src/pl_exec.c,v 1.149 2005/06/26 22:05:42 tgl Exp $
6+
* $PostgreSQL: pgsql/src/pl/plpgsql/src/pl_exec.c,v 1.150 2005/07/28 00:26:30 tgl Exp $
77
*
88
* This software is copyrighted by Jan Wieck - Hamburg.
99
*
@@ -1143,7 +1143,7 @@ exec_stmt_getdiag(PLpgSQL_execstate *estate, PLpgSQL_stmt_getdiag *stmt)
11431143
{
11441144
PLpgSQL_diag_item *diag_item = (PLpgSQL_diag_item *) lfirst(lc);
11451145
PLpgSQL_datum *var;
1146-
bool isnull;
1146+
bool isnull = false;
11471147

11481148
if (diag_item->target <= 0)
11491149
continue;
@@ -1434,7 +1434,7 @@ exec_stmt_fori(PLpgSQL_execstate *estate, PLpgSQL_stmt_fori *stmt)
14341434
}
14351435
else
14361436
{
1437-
/*
1437+
/*
14381438
* otherwise, this is a named continue that does not
14391439
* match the current statement's label, if any: return
14401440
* RC_CONTINUE so that the CONTINUE will propagate up

0 commit comments

Comments
 (0)