diff options
author | Jeff Davis <jdavis@postgresql.org> | 2024-07-30 16:23:20 -0700 |
---|---|---|
committer | Jeff Davis <jdavis@postgresql.org> | 2024-07-30 16:25:03 -0700 |
commit | 10fdc67f81972a03eee928a3b0ae226a78243fad (patch) | |
tree | 7a26fed676c304b45017732f4aac4c8548684b53 /src/backend/utils/adt/varchar.c | |
parent | 0d57dc2f9137de47534cc4db115e182e4093b945 (diff) | |
download | postgresql-10fdc67f81972a03eee928a3b0ae226a78243fad.tar.gz postgresql-10fdc67f81972a03eee928a3b0ae226a78243fad.zip |
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
Diffstat (limited to 'src/backend/utils/adt/varchar.c')
-rw-r--r-- | src/backend/utils/adt/varchar.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/backend/utils/adt/varchar.c b/src/backend/utils/adt/varchar.c index 02dfe219f54..1ba5f9d9f6c 100644 --- a/src/backend/utils/adt/varchar.c +++ b/src/backend/utils/adt/varchar.c @@ -1028,7 +1028,9 @@ hashbpchar(PG_FUNCTION_ARGS) buf = palloc(bsize + 1); rsize = pg_strnxfrm(buf, bsize + 1, keydata, keylen, mylocale); - if (rsize != bsize) + + /* the second call may return a smaller value than the first */ + if (rsize > bsize) elog(ERROR, "pg_strnxfrm() returned unexpected result"); /* @@ -1084,7 +1086,9 @@ hashbpcharextended(PG_FUNCTION_ARGS) buf = palloc(bsize + 1); rsize = pg_strnxfrm(buf, bsize + 1, keydata, keylen, mylocale); - if (rsize != bsize) + + /* the second call may return a smaller value than the first */ + if (rsize > bsize) elog(ERROR, "pg_strnxfrm() returned unexpected result"); /* |