Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitc3fc2bf

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 worthgetting rid of.)
1 parent1d89026 commitc3fc2bf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

‎src/pl/plpgsql/src/pl_exec.c

Lines changed: 2 additions & 2 deletions
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-
Datumresult;
4050+
Datumresult=0;
40514051
intrc;
40524052

40534053
/*

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp