pgsql: Relax check for return value from second call of pg_strnxfrm().

From: Jeff Davis <jdavis(at)postgresql(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Relax check for return value from second call of pg_strnxfrm().
Date: 2024-07-30 23:51:38
Message-ID: E1sYwd0-001xCy-Ql@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Relax check for return value from second call of pg_strnxfrm().

strxfrm() is not guaranteed to return the exact number of bytes needed
to store the result; it may return a higher value.

Discussion: https://postgr.es/m/32f85d88d1f64395abfe5a10dd97a62a4d3474ce.camel@j-davis.com
Reviewed-by: Heikki Linnakangas
Backpatch-through: 16

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/679c5084cf210c6e958276b657039e8ba0c077c0

Modified Files
--------------
src/backend/access/hash/hashfunc.c | 8 ++++++--
src/backend/utils/adt/pg_locale.c | 12 ++++++------
src/backend/utils/adt/varchar.c | 8 ++++++--
3 files changed, 18 insertions(+), 10 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Jeff Davis 2024-07-30 23:51:45 pgsql: Relax check for return value from second call of pg_strnxfrm().
Previous Message Heikki Linnakangas 2024-07-30 19:24:48 pgsql: Replace static bufs with a StringInfo in cash_words()