File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change 8
8
*
9
9
*
10
10
* IDENTIFICATION
11
- * $PostgreSQL: pgsql/src/backend/parser/parse_func.c,v 1.212 2009/03/26 22:26:06 petere Exp $
11
+ * $PostgreSQL: pgsql/src/backend/parser/parse_func.c,v 1.213 2009/04/24 16:09:50 tgl Exp $
12
12
*
13
13
*-------------------------------------------------------------------------
14
14
*/
@@ -827,6 +827,15 @@ func_get_detail(List *funcname,
827
827
FuncCandidateList raw_candidates ;
828
828
FuncCandidateList best_candidate ;
829
829
830
+ /* initialize output arguments to silence compiler warnings */
831
+ * funcid = InvalidOid ;
832
+ * rettype = InvalidOid ;
833
+ * retset = false;
834
+ * nvargs = 0 ;
835
+ * true_typeids = NULL ;
836
+ if (argdefaults )
837
+ * argdefaults = NIL ;
838
+
830
839
/* Get list of possible candidates from namespace search */
831
840
raw_candidates = FuncnameGetCandidates (funcname , nargs ,
832
841
expand_variadic , expand_defaults );
You can’t perform that action at this time.
0 commit comments