Fix oversight in handling of modifiedCols since f24523672d
authorTomas Vondra <tomas.vondra@postgresql.org>
Sun, 2 Jul 2023 18:29:01 +0000 (20:29 +0200)
committerTomas Vondra <tomas.vondra@postgresql.org>
Sun, 2 Jul 2023 20:21:02 +0000 (22:21 +0200)
commitce5aaea8cd32b88451914356989f0f4ecb9e4482
tree15a3219552a6c31301811801c0dad6a31886245d
parent98640f960eb9ed80cf90de3ef5d2e829b785b3eb
Fix oversight in handling of modifiedCols since f24523672d

Commit f24523672d fixed a memory leak by moving the modifiedCols bitmap
into the per-row memory context. In the case of AFTER UPDATE triggers,
the bitmap is however referenced from an event kept until the end of the
query, resulting in a use-after-free bug.

Fixed by copying the bitmap into the AfterTriggerEvents memory context,
which is the one where we keep the trigger events. There's only one
place that needs to do the copy, but the memory context may not exist
yet. Doing that in a separate function seems more readable.

Report by Alexander Pyhalov, fix by me. Backpatch to 13, where the
bitmap was added to the event by commit 71d60e2aa0.

Reported-by: Alexander Pyhalov
Backpatch-through: 13
Discussion: https://postgr.es/m/acddb17c89b0d6cb940eaeda18c08bbe@postgrespro.ru
src/backend/commands/trigger.c