Fix ancient bug in ecpg's pthread_once() emulation for Windows.
authorTom Lane <[email protected]>
Sat, 24 Oct 2020 17:12:08 +0000 (13:12 -0400)
committerTom Lane <[email protected]>
Sat, 24 Oct 2020 17:12:47 +0000 (13:12 -0400)
commit379c43bdad1d18786b87f38e8761f61a478b5875
tree8c85938b197fd4e3b6eb24254fea5bb7ce11da3b
parent05a36321a70e180168cd58a2e20313163c007623
Fix ancient bug in ecpg's pthread_once() emulation for Windows.

We must not set the "done" flag until after we've executed the
initialization function.  Otherwise, other threads can fall through
the initial unlocked test before initialization is really complete.

This has been seen to cause rare failures of ecpg's thread/descriptor
test, and it could presumably cause other sorts of misbehavior in
threaded ECPG-using applications, since ecpglib relies on
pthread_once() in several places.

Diagnosis and patch by me, based on investigation by Alexander Lakhin.
Back-patch to all supported branches (the bug dates to 2007).

Discussion: https://postgr.es/m/16685-d6cd241872c101d3@postgresql.org
src/interfaces/ecpg/ecpglib/misc.c