]> granicus.if.org Git - postgresql/commitdiff
Fix thinkos in LookupFuncName() for function name lookups
authorMichael Paquier <michael@paquier.xyz>
Tue, 25 Jun 2019 02:15:38 +0000 (11:15 +0900)
committerMichael Paquier <michael@paquier.xyz>
Tue, 25 Jun 2019 02:15:38 +0000 (11:15 +0900)
This could trigger valgrind failures when doing ambiguous function name
lookups when no arguments are provided by the caller.  The problem has
been introduced in aefeb68, so backpatch to v10.  HEAD is fine thanks to
the refactoring done in bfb456c1.

Reported-by: Alexander Lakhin
Author: Alexander Lakhin, Michael Paquier
Discussion: https://postgr.es/m/3d068be5-f617-a5ee-99f6-458a407bfd65@gmail.com
Backpatch-through: 10

src/backend/parser/parse_func.c

index 44257154b816d81a05c3be06f842a81bbd457027..141007d5a4bbf8886e5e91eb4cca84433d81aadd 100644 (file)
@@ -2059,9 +2059,10 @@ LookupFuncName(List *funcname, int nargs, const Oid *argtypes, bool noError)
                                                         errmsg("function name \"%s\" is not unique",
                                                                        NameListToString(funcname)),
                                                         errhint("Specify the argument list to select the function unambiguously.")));
+                               return InvalidOid;
                        }
-                       else
-                               return clist->oid;
+                       /* Otherwise return the match */
+                       return clist->oid;
                }
                else
                {
@@ -2070,9 +2071,14 @@ LookupFuncName(List *funcname, int nargs, const Oid *argtypes, bool noError)
                                                (errcode(ERRCODE_UNDEFINED_FUNCTION),
                                                 errmsg("could not find a function named \"%s\"",
                                                                NameListToString(funcname))));
+                       return InvalidOid;
                }
        }
 
+       /*
+        * Otherwise, look for a match to the arg types.  FuncnameGetCandidates
+        * has ensured that there's at most one match in the returned list.
+        */
        while (clist)
        {
                if (memcmp(argtypes, clist->args, nargs * sizeof(Oid)) == 0)