| From: | Ranier Vilela <ranier_gyn(at)hotmail(dot)com> |
|---|---|
| To: | "pgsql-hackers(at)postgresql(dot)org" <pgsql-hackers(at)postgresql(dot)org> |
| Subject: | [PATCH][BUG FIX] Pointer var initilialized with boolean. |
| Date: | 2019-11-22 17:29:54 |
| Message-ID: | MN2PR18MB2927FE3E5A1C1627903C8093E3490@MN2PR18MB2927.namprd18.prod.outlook.com |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-hackers |
Hi,
Typo mystake?
Pointer var initilialized with boolean.
Best regards.
Ranier Vilela
--- \dll\postgresql-12.0\a\backend\commands\trigger.c Mon Sep 30 17:06:55 2019
+++ trigger.c Fri Nov 22 14:20:56 2019
@@ -2536,7 +2536,7 @@
TupleTableSlot *slot)
{
TriggerDesc *trigdesc = relinfo->ri_TrigDesc;
- HeapTuple newtuple = false;
+ HeapTuple newtuple = NULL;
bool should_free;
TriggerData LocTriggerData;
int i;
@@ -3178,7 +3178,7 @@
{
TriggerDesc *trigdesc = relinfo->ri_TrigDesc;
TupleTableSlot *oldslot = ExecGetTriggerOldSlot(estate, relinfo);
- HeapTuple newtuple = false;
+ HeapTuple newtuple = NULL;
bool should_free;
TriggerData LocTriggerData;
int i;
| Attachment | Content-Type | Size |
|---|---|---|
| trigger.c.patch | application/octet-stream | 623 bytes |
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Peter Geoghegan | 2019-11-22 17:37:08 | Re: [PATCH][BUG FIX] Pointer var initilialized with boolean. |
| Previous Message | Ranier Vilela | 2019-11-22 17:19:11 | [PATCH][BUG FIX] Pointer arithmetic with NULL |