]> git.ipfire.org Git - thirdparty/postgresql.git/commit
Make fallback MD5 implementation thread-safe on big-endian systems
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>
Wed, 7 Aug 2024 07:43:52 +0000 (10:43 +0300)
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>
Wed, 7 Aug 2024 07:44:10 +0000 (10:44 +0300)
commita38f5f880d1e86fedf1616de5391df5f0d5e4239
tree5356b80828c51ae1bc183478d085f45284a9e675
parent3cc5e51ab4507b33acc82684b7d79ac43b8a6b5d
Make fallback MD5 implementation thread-safe on big-endian systems

Replace a static scratch buffer with a local variable, because a
static buffer makes the function not thread-safe. This function is
used in client-code in libpq, so it needs to be thread-safe. It was
until commit b67b57a966, which replaced the implementation with the
one from pgcrypto.

Backpatch to v14, where we switched to the new implementation.

Reviewed-by: Robert Haas, Michael Paquier
Discussion: https://www.postgresql.org/message-id/dfa2015d-ad21-4802-a4cc-3850fc5fff3f@iki.fi
src/common/md5.c