pgsql: Fix wrong allocation size in c8f621c43. - Mailing list pgsql-committers

From Andres Freund
Subject pgsql: Fix wrong allocation size in c8f621c43.
Date
Msg-id E1acj3o-0005mC-0O@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Fix wrong allocation size in c8f621c43.

In c8f621c43 I forgot to account for MAXALIGN when allocating a new
tuplebuf in ReorderBufferGetTupleBuf(). That happens to currently not
cause active problems on a number of platforms because the affected
pointer is already aligned, but others, like ppc and hppa, trigger this
in the regression test, due to a debug memset clearing memory.

Fix that.

Backpatch: 9.4, like the previous commit.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/fd45d16f6212df15821684b231a44448389fb002

Modified Files
--------------
src/backend/replication/logical/reorderbuffer.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)


pgsql-committers by date:

Previous
From: Tom Lane
Date:
Subject: pgsql: Fix not-terribly-safe coding in NIImportOOAffixes() and NIImport
Next
From: Andres Freund
Date:
Subject: pgsql: Fix wrong allocation size in c8f621c43.