pgsql: Pass Size as a 2nd argument for snprintf() in tablesync.c.

From: Amit Kapila <akapila(at)postgresql(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Pass Size as a 2nd argument for snprintf() in tablesync.c.
Date: 2022-09-21 05:02:56
Message-ID: E1oarsu-001IW5-1R@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Pass Size as a 2nd argument for snprintf() in tablesync.c.

Previously the following snprintf() wrappers:

* ReplicationSlotNameForTablesync()
* ReplicationOriginNameForTablesync()

... used int as a second argument of snprintf() while the actual type of it
is size_t. Although it doesn't fail at present better replace it with Size
for consistency with the rest of the system.

Author: Aleksander Alekseev
Reviewed-By: Peter Smith
Discussion: https://postgr.es/m/CAHut%2BPsa8hhfSE6ozUK-ih7GkQziAVAf4f3bqiXEj2nQiu-43g%40mail.gmail.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/a932824dfe068f563e9abb9264f6e071f23e67ae

Modified Files
--------------
src/backend/replication/logical/tablesync.c | 4 ++--
src/include/replication/slot.h | 2 +-
src/include/replication/worker_internal.h | 2 +-
3 files changed, 4 insertions(+), 4 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Alvaro Herrera 2022-09-21 10:35:44 pgsql: Improve some GUC description strings
Previous Message Amit Kapila 2022-09-21 04:24:27 pgsql: Improve some error messages.