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 88 *
99 *
1010 * 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 $
1212 *
1313 *-------------------------------------------------------------------------
1414 */
@@ -827,6 +827,15 @@ func_get_detail(List *funcname,
827827 FuncCandidateList raw_candidates ;
828828 FuncCandidateList best_candidate ;
829829
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+
830839 /* Get list of possible candidates from namespace search */
831840 raw_candidates = FuncnameGetCandidates (funcname , nargs ,
832841 expand_variadic , expand_defaults );
You can’t perform that action at this time.
0 commit comments