projects
/
users
/
simon
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
597d980
)
Suppress a possibly-uninitialized-variable warning. (I'm only seeing it
author
Tom Lane
<tgl@sss.pgh.pa.us>
Fri, 16 May 2008 18:34:51 +0000
(18:34 +0000)
committer
Tom Lane
<tgl@sss.pgh.pa.us>
Fri, 16 May 2008 18:34:51 +0000
(18:34 +0000)
on Apple's gcc and not my other machines, but still it seems worth
getting rid of.)
src/pl/plpgsql/src/pl_exec.c
patch
|
blob
|
blame
|
history
diff --git
a/src/pl/plpgsql/src/pl_exec.c
b/src/pl/plpgsql/src/pl_exec.c
index dfa4ca416c5a189c26007ae20579eb0457acdf9e..0144cef9d9e076b40247de90c996e7bae4f1c2c5 100644
(file)
--- a/
src/pl/plpgsql/src/pl_exec.c
+++ b/
src/pl/plpgsql/src/pl_exec.c
@@
-4047,7
+4047,7
@@
exec_eval_expr(PLpgSQL_execstate *estate,
bool *isNull,
Oid *rettype)
{
- Datum result;
+ Datum result
= 0
;
int rc;
/*