Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit c3fc2bf

Browse files
committed
Suppress a possibly-uninitialized-variable warning. (I'm only seeing it
on Apple's gcc and not my other machines, but still it seems worth getting rid of.)
1 parent 1d89026 commit c3fc2bf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/pl/plpgsql/src/pl_exec.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $PostgreSQL: pgsql/src/pl/plpgsql/src/pl_exec.c,v 1.215 2008/05/15 22:39:49 tgl Exp $
11+
* $PostgreSQL: pgsql/src/pl/plpgsql/src/pl_exec.c,v 1.216 2008/05/16 18:34:51 tgl Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -4047,7 +4047,7 @@ exec_eval_expr(PLpgSQL_execstate *estate,
40474047
bool *isNull,
40484048
Oid *rettype)
40494049
{
4050-
Datum result;
4050+
Datum result = 0;
40514051
int rc;
40524052

40534053
/*

0 commit comments

Comments
 (0)