Hi,
Sorry by error in the patch.
--- \dll\postgresql-12.0\a\backend\commands\event_trigger.c Mon Sep 30 17:06:55
2019
+++ event_trigger.c Tue Nov 12 08:34:30 2019
@@ -171,7 +171,7 @@
HeapTuple tuple;
Oid funcoid;
Oid funcrettype;
- Oid fargtypes[1]; /* dummy */
+ Oid fargtypes[1] = {InvalidOid}; /* dummy */
Oid evtowner = GetUserId();
ListCell *lc;
List *tags = NULL;________________________________ De: Michael Paquier <[email protected]> Enviado: terça-feira, 12 de novembro de 2019 03:31 Para: Ranier Vilela <[email protected]> Cc: [email protected] <[email protected]> Assunto: Re: [BUG FIX] Uninitialized var fargtypes used. On Mon, Nov 11, 2019 at 06:28:47PM +0000, Ranier Vilela wrote: > Can anyone check this bug fix? > > +++ event_trigger.c Mon Nov 11 13:52:35 2019 > @@ -171,7 +171,7 @@ > HeapTuple tuple; > Oid funcoid; > Oid funcrettype; > - Oid fargtypes[1]; /* dummy */ > + Oid fargtypes[1] = {InvalidOid, InvalidOid}; > /* dummy */ > Oid evtowner = GetUserId(); Yeah, it would be better to fix this initialization. -- Michael
event_trigger.c.patch
Description: event_trigger.c.patch
