8000 Silence compiler warning in release 11 and 12 branches · postgres/postgres@dd97791 · GitHub
[go: up one dir, main page]

Skip to content

Commit dd97791

Browse files
committed
Silence compiler warning in release 11 and 12 branches
The offending code is not present in later branches. Discussion: https://postgr.es/m/ba2150c1-8485-6597-fafe-4fcd39e49c28@dunslane.net
1 parent b915bf4 commit dd97791

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/commands/foreigncmds.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,7 @@ static Oid
472472
lookup_fdw_handler_func(DefElem *handler)
473473
{
474474
Oid handlerOid;
475-
Oid funcargtypes[1]; /* dummy */
475+
Oid funcargtypes[1] = {0}; /* dummy */
476476

477477
if (handler == NULL || handler->arg == NULL)
478478
return InvalidOid;

0 commit comments

Comments
 (0)
0