From: Tom Lane Date: Fri, 15 May 2026 22:32:33 +0000 (-0400) Subject: Doc: fix release-note typo. X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=2adf78dbe9a2e4a32ceb5383e240c06ef6728776;p=thirdparty%2Fpostgresql.git Doc: fix release-note typo. This mention of memcpy() should of course have said memcmp(). Reported-by: chris@chrullrich.net Author: Tom Lane Discussion: https://postgr.es/m/177883653690.764749.14038057906859461991@wrigleys.postgresql.org Backpatch-through: 14 --- diff --git a/doc/src/sgml/release-16.sgml b/doc/src/sgml/release-16.sgml index 143d1b109dc..d99ca0e6dff 100644 --- a/doc/src/sgml/release-16.sgml +++ b/doc/src/sgml/release-16.sgml @@ -320,7 +320,7 @@ Branch: REL_14_STABLE [b282280e9] 2026-05-11 05:13:51 -0700 Use timingsafe_bcmp() instead - of memcpy() or strcmp() + of memcmp() or strcmp() when checking passwords, hashes, etc. It is not known whether the data dependency of those functions is usefully exploitable in any of these places, but in the interests of safety, replace them.